Skip to content

Commit 9459fdf

Browse files
committed
Default activation function reverted to SteepenedSigmoid. This will be the default for release 2.3.0. A later version may change this.
1 parent 7034b8e commit 9459fdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/SharpNeatLib/Genomes/Neat/NeatGenomeParameters.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public class NeatGenomeParameters
7878
/// </summary>
7979
public NeatGenomeParameters()
8080
{
81-
_activationFn = BoundedLeakyReLU.__DefaultInstance;
81+
_activationFn = SteepenedSigmoid.__DefaultInstance;
8282
_connectionWeightRange = DefaultConnectionWeightRange;
8383
_initialInterconnectionsProportion = DefaultInitialInterconnectionsProportion;
8484
_disjointExcessGenesRecombineProbability = DefaultDisjointExcessGenesRecombineProbability;

0 commit comments

Comments
 (0)