|
1 |
| -NEAT for Go |
2 |
| -########### |
3 |
| - |
| 1 | +RedQ.NEAT |
| 2 | +========== |
4 | 3 | This a Go implementation of NeuralEvolution of Augmenting Topologies (NEAT). From the [NEAT F.A.Q](http://www.cs.ucf.edu/~kstanley/neat.html#FAQ1).
|
5 | 4 |
|
6 | 5 | *NEAT stands for NeuroEvolution of Augmenting Topologies. It is a method for evolving artificial neural networks with a genetic algorithm. NEAT implements the idea that it is most effective to start evolution with small, simple networks and allow them to become increasingly complex over generations. That way, just as organisms in nature increased in complexity since the first cell, so do neural networks in NEAT. This process of continual elaboration allows finding highly sophisticated and complex neural networks.*
|
7 | 6 |
|
8 |
| -The core of this library, often called Classic in the code, was written from the ground up using Dr. Kenneth Stanley's [PhD dissertation](http://nn.cs.utexas.edu/keyword?stanley:phd04) as a guide. NEAT has changed a bit since that paper and I have made some adjustments based on the F.A.Q. I have also add some flexibility in the design to allow for growing the library via helpers which will provide for adding HyperNEAT, Novelty Search, etc. to the library without changing the core API. |
9 |
| - |
10 |
| -The library and proof-of-concept experiments utilize SVG to visualize the network of the best genome as well as the experiment's history. This visualization is based on the [NeuroEvolution Visualization Toolkit (NEVT)](http://nevt.sourceforge.net). Each image is output into an .html file for viewing from your desktop or presented through a web server. |
11 |
| - |
12 |
| -# How to use |
13 |
| - |
14 |
| -## Installation |
| 7 | +More information will be provided on the blog [redq.me](http://www.redq.me). |
15 | 8 |
|
| 9 | +# Installation |
16 | 10 | ```sh
|
17 | 11 | go get github.com/rqme/neat
|
18 | 12 | ```
|
19 | 13 |
|
20 |
| -## Proof-of-concept experiments |
| 14 | +# Usage |
| 15 | +The API documentation can be found at [GoDoc](http://godoc.org/github.com/rqme/neat). |
21 | 16 |
|
22 |
| -Inside the github.com/rqme/neat/x/proofs direcory are a series of experiments. I have tried to include at least one for each new feature of the library, usually from (or based on) the one the feature's creator used. Each experiment is set up to run as a series of indpendent trials with the results displayed in the console. |
| 17 | +The Context and Experiment are the central components of the library. The latter encapsulates everything needed for execution and the former provides access to all the necessary helpers. There are several convenience functions in the starter package. |
23 | 18 |
|
24 |
| -Feature | Experiment | Use check-stop flag (see below) |
25 |
| -----------------|-------------|-------------------------------- |
26 |
| -NEAT | XOR | yes |
27 |
| -NEAT | Double Pole | yes |
28 |
| -Phased Mutation | OCR | no |
| 19 | +RedQ.NEAT includes several demonstration experiments, each built at the onset of adding a new feature (like [phased mutation](http://sharpneat.sourceforge.net/phasedsearch.html)) or concept (like [Novelty Search](http://eplex.cs.ucf.edu/noveltysearch/userspage/)). These proof-of-concepts are intended to valid this library with the idea being tested as well as compare different helpers (such as HyperNEAT vs regular NEAT). The experiments are each in their own package in the x/experiments directory. |
29 | 20 |
|
30 |
| -### To build |
| 21 | +## Running experiments |
| 22 | +Each experiment builds off the trials package which provides a way to compare multiple runs of an experiment against each other. This package provides several command line arguments that are common to all experiments and displays its output in the console window. For example, here is the output of the XOR experiment: |
31 | 23 |
|
32 | 24 | ```sh
|
33 |
| -go build github.com/rqme/neat/x/proof/xor |
| 25 | +$ xor --check-stop --trials 40 |
| 26 | +Run Iters. Seconds Nodes Conns Fitness Fail Comment |
| 27 | +--- --------- --------- --------- --------- --------- ------ --------- |
| 28 | + 0 28 1.339 9 16 16.000 |
| 29 | + 1 26 1.192 8 14 15.443 |
| 30 | + 2 59 3.384 7 17 16.000 |
| 31 | + 3 59 3.609 14 28 16.000 |
| 32 | +... |
| 33 | + 36 45 2.513 11 20 16.000 |
| 34 | + 37 30 1.265 7 12 12.250 |
| 35 | + 38 28 1.246 9 17 16.000 |
| 36 | + 39 19 0.822 6 12 13.930 |
| 37 | + |
| 38 | +Summary for trials excluding failures (and time for skipped) |
| 39 | + Iters. Seconds Nodes Conns Fitness |
| 40 | +--- --------- --------- --------- --------- --------- |
| 41 | +AVG 34 1.769 9 17 14.894 |
| 42 | +MED 32 1.625 9 16 15.996 |
| 43 | +SDV 13 0.905 2 5 1.637 |
| 44 | +MIN 9 0.303 5 7 10.782 |
| 45 | +MAX 66 4.503 15 33 16.000 |
34 | 46 | ```
|
35 | 47 |
|
36 |
| -###To run |
| 48 | +### Common command-line arguments |
| 49 | +flag | description | default |
| 50 | +-----|-------------|------------ |
| 51 | +config-name | Common name used as a prefix to archive files | defaults to the name of the executable |
| 52 | +config-path | Directory containing the initial configuration file and, if available, state files | Current directory |
| 53 | +trials | The number of trial runs to perform | 10 |
| 54 | +check-stop | Experiments which do not end with an explicit stop are considered to have failed. | false |
| 55 | +show-work | Informs the Evaluator (if it implements Demonstrable) to show its work during evaluation. This is used only for the best genome. | false |
| 56 | +skip-evolve | Skips evolution and only performs summary of archived runs. Best used with --show-work and setting the config-path to the ArchivePath used in the settings file. | false |
| 57 | + |
| 58 | +## Experiments |
| 59 | +### XOR |
| 60 | +[Exclusive OR](https://en.wikipedia.org/wiki/Exclusive_or), or XOR for short, is the starter experiment to verify the NEAT (called Classic in RedQ.NEAT) functionality. Located in the x/examples/xor directory, the package produces a standalone executable file. A configuration file, xor-config.json, is provided. |
| 61 | + |
| 62 | +The experiment provides no new command-line arguments but it is recommended to use --check-stop when running to catch trials that do not produce a solution. |
| 63 | + |
| 64 | +RedQ.NEAT was able to find a solution in 40 out of 40 trials. The median number of nodes and connections were 9 and 16 respectively. The results of this experiment are detailed in the [wiki](https://github.com/rqme/neat/wiki/XOR-experiment-results). |
| 65 | + |
| 66 | +# Background |
| 67 | +The core of this library, often called Classic in the code, was written from the ground up using Dr. Kenneth Stanley's [PhD dissertation](http://nn.cs.utexas.edu/keyword?stanley:phd04) as a guide. NEAT has changed a bit since that paper and I have made some adjustments based on the F.A.Q. I have also add some flexibility in the design to allow for growing the library via helpers which will provide for adding HyperNEAT, Novelty Search, etc. to the library without changing the core API. |
| 68 | + |
| 69 | +The library and proof-of-concept experiments utilize SVG to visualize the network of the best genome as well as the experiment's history. This visualization is based on the [NeuroEvolution Visualization Toolkit (NEVT)](http://nevt.sourceforge.net). Each image is output into an .html file for viewing from your desktop or presented through a web server. |
| 70 | + |
37 | 71 |
|
38 |
| -```sh |
39 |
| -xor --config-path "." --archive-path "/tmp" --archive-name "xor" --web-path "/tmp" --check-stop |
40 |
| -``` |
41 |
| -There is a configuration file in each. Place this in the archive-path or, preferrably, config-path directory. |
42 |
| - |
43 |
| -#### Command-line flags |
44 |
| - |
45 |
| -Flag | Default | Description |
46 |
| --------------|---------|------------------------------------------------------------------------------------------ |
47 |
| -archive-path | "" | the directory to which generational settings and state will be written |
48 |
| -archive-name | "" | prefix for the archive files |
49 |
| -config-path | "" | overrides the archive-path. used to restore settings and state from a different location |
50 |
| -web-path | "" | the directory where html files from the web visualizer will be written |
51 |
| -trials | 10 | the number of trials to run |
52 |
| -check-stop | false | consider not meeting the stop condition a failure. |
53 |
| -duration | 90 | maximum number of minutes to run a trial. used by OCR only |
54 |
| -velocity | false | include velocity (Markov) in inputs. used by double pole only |
55 |
| - |
56 |
| -Note: as the archiving process writes out all settings, including zero files, it is advisable to use a config-path to store an initial settings file to ensure it is not overwritten. This is especially important if setting traits are used as original settings will be overwritten during evolution. |
57 | 72 |
|
0 commit comments