encog-dotnet-core
encog-dotnet-core copied to clipboard
Minor issue in BasicLayer
The summary says that the layer is being created with a sigmoid function but then creates it with a hyperbolic tangent function. Am I missing something here or is this a mistake?
///
/// Construct this layer with a sigmoid activation function. ///
public BasicLayer(int neuronCount) : this(new ActivationTANH(), true, neuronCount) { }
This documentation implies that sigmoid is an optional setting, so I'm assuming the summary hasn't been updated.