encog-dotnet-core icon indicating copy to clipboard operation
encog-dotnet-core copied to clipboard

Minor issue in BasicLayer

Open mmehrle opened this issue 11 years ago • 1 comments

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) { }

mmehrle avatar Aug 16 '14 11:08 mmehrle

This documentation implies that sigmoid is an optional setting, so I'm assuming the summary hasn't been updated.

jeroldhaas avatar Mar 08 '15 21:03 jeroldhaas