Skip to content
This repository was archived by the owner on Dec 11, 2018. It is now read-only.

Commit 661289a

Browse files
committed
progress
1 parent 0fca510 commit 661289a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

44
NEAT (NeuroEvolution of Augmenting Topologies) is a neuroevolution algorithm by
55
Dr. Kenneth O. Stanley which evolves not only neural networks' weights but also their
6-
topologies.
6+
topologies. This method starts the evolution process with genomes with minimal structure,
7+
then complexifies the structure of each genome as it progresses. You can read the original
8+
paper from [here](http://nn.cs.utexas.edu/downloads/papers/stanley.ec02.pdf).
79

810
## Installation
911
To install `neat` run the following:
@@ -34,6 +36,7 @@ run.
3436
"ratePerturb": 0.2,
3537
"rateAddNode": 0.2,
3638
"rateAddConn": 0.2,
39+
"rateMutateChild": 0.5,
3740
"distanceThreshold": 20.0,
3841
"coeffUnmatching": 1.0,
3942
"coeffMatching": 1.0

config_template.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"ratePerturb": 0.0,
1414
"rateAddNode": 0.0,
1515
"rateAddConn": 0.0,
16+
"rateMutateChild": 0.0,
1617
"distanceThreshold": 0.0,
1718
"coeffUnmatching": 0.0,
1819
"coeffMatching": 0.0

0 commit comments

Comments
 (0)