Skip to content

Commit

Permalink
Default activation function reverted to SteepenedSigmoid. This will b…
Browse files Browse the repository at this point in the history
…e the default for release 2.3.0. A later version may change this.
  • Loading branch information
colgreen committed Apr 29, 2017
1 parent 7034b8e commit 9459fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SharpNeatLib/Genomes/Neat/NeatGenomeParameters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class NeatGenomeParameters
/// </summary>
public NeatGenomeParameters()
{
_activationFn = BoundedLeakyReLU.__DefaultInstance;
_activationFn = SteepenedSigmoid.__DefaultInstance;
_connectionWeightRange = DefaultConnectionWeightRange;
_initialInterconnectionsProportion = DefaultInitialInterconnectionsProportion;
_disjointExcessGenesRecombineProbability = DefaultDisjointExcessGenesRecombineProbability;
Expand Down

0 comments on commit 9459fdf

Please sign in to comment.