C# Класс Encog.Neural.Networks.Layers.BasicLayer

Наследование: Encog.Persist.BasicPersistedObject, ILayer
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
BasicLayer ( IActivationFunction activationFunction, bool hasBias, int neuronCount ) : System

Construct this layer with a non-default activation function, also determine if a bias is desired or not.

BasicLayer ( int neuronCount ) : System

Construct this layer with a sigmoid activation function.

Описание методов

BasicLayer() публичный Метод

Construct this layer with a non-default activation function, also determine if a bias is desired or not.
public BasicLayer ( IActivationFunction activationFunction, bool hasBias, int neuronCount ) : System
activationFunction IActivationFunction The activation function to use.
hasBias bool True if this layer has a bias.
neuronCount int How many neurons in this layer.
Результат System

BasicLayer() публичный Метод

Construct this layer with a sigmoid activation function.
public BasicLayer ( int neuronCount ) : System
neuronCount int
Результат System