Darwin Neuroevolution Framework
neat.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <core/ann_activation_functions.h>
18 #include <core/properties.h>
19 
20 // A minimal implementation of NEAT, as described here:
21 // http://nn.cs.utexas.edu/downloads/papers/stanley.ec02.pdf
22 // (with a few tweaks and additions)
23 
24 namespace neat {
25 
26 void init();
27 
28 struct Config : public core::PropertySet {
29  PROPERTY(activation_function,
32  "Main activation function");
33 
34  PROPERTY(gate_activation_function,
37  "Activation function used for cell gates (ex. LSTM)");
38 
39  PROPERTY(implicit_bias_links,
40  bool,
41  true,
42  "Use bias nodes, automatically feeding into all non-input nodes");
43 
44  PROPERTY(use_lstm_nodes, bool, false, "Use LSTM nodes instead of basic nodes");
45 
46  PROPERTY(use_classic_selection, bool, false, "Selection strategy");
47 
48  // elite (direct) reproduction
49  PROPERTY(elite_percentage, float, 0.1f, "Elite percentage");
50  PROPERTY(elite_min_fitness, float, 0.0f, "Elite min fitness");
51  PROPERTY(elite_mutation_chance, float, 0.0f, "Elite mutation chance");
52 
53  PROPERTY(recurrent_output_nodes,
54  bool,
55  false,
56  "Create recurrent output nodes (recurrent link to themselves)");
57  PROPERTY(recurrent_hidden_nodes,
58  bool,
59  false,
60  "Create recurrent hidden nodes (recurrent link to themselves)");
61 
62  PROPERTY(preserve_connectivity,
63  bool,
64  false,
65  "Make sure the genotypes produce fully connected networks after crossover");
66 
67  PROPERTY(contiguous_species,
68  bool,
69  true,
70  "Contiguous species (NEAT selection strategy)");
71 
72  PROPERTY(larva_age,
73  int,
74  5,
75  "Genotypes under larva age (in generations) are protected from replacement");
76 
77  PROPERTY(old_age, int, 25, "Age limit until genotypes are protected from replacement");
78 
79  PROPERTY(min_viable_fitness,
80  float,
81  10.0f,
82  "Minimum fitness value to be a candidate for direct mutation");
83 
84  // genotype compatibility coefficients
85  PROPERTY(c1, double, 1.0, "Genotype compatibility C1 coefficient");
86  PROPERTY(c2, double, 0.7, "Genotype compatibility C2 coefficient");
87  PROPERTY(c3, double, 0.1, "Genotype compatibility C3 coefficient");
88 
89  PROPERTY(compatibility_threshold, double, 5.0, "Species distance threshold");
90 
91  PROPERTY(min_species_size,
92  int,
93  20,
94  "Species with less members than this value will go extinct");
95 
96  // mutation probabilities
97  PROPERTY(weight_mutation_chance, float, 0.01f, "Weight mutation chance");
98  PROPERTY(new_link_chance, float, 0.02f, "New link chance");
99  PROPERTY(new_node_chance, float, 0.001f, "New node chance");
100 
101  PROPERTY(uniform_parents_distribution,
102  bool,
103  false,
104  "Prefer any (rather than fitter) parents?");
105 
106  PROPERTY(normalize_input, bool, false, "Normalize input values");
107  PROPERTY(normalize_output, bool, false, "Normalize output values");
108 };
109 
110 // global configuration values
111 extern Config g_config;
112 
113 // TODO: design a better interface
114 extern int g_inputs;
115 extern int g_outputs;
116 
117 } // namespace neat
ActivationFunction
The types of supported activation functions.
Definition: ann_activation_functions.h:28
NeuroEvolution of Augmenting Topologies (NEAT)
Definition: brain.cpp:20
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
NEAT activation function.