17 #include <core/ann_activation_functions.h> 18 #include <core/properties.h> 29 PROPERTY(activation_function,
32 "Main activation function");
34 PROPERTY(gate_activation_function,
37 "Activation function used for cell gates (ex. LSTM)");
39 PROPERTY(implicit_bias_links,
42 "Use bias nodes, automatically feeding into all non-input nodes");
44 PROPERTY(use_lstm_nodes,
bool,
false,
"Use LSTM nodes instead of basic nodes");
46 PROPERTY(use_classic_selection,
bool,
false,
"Selection strategy");
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");
53 PROPERTY(recurrent_output_nodes,
56 "Create recurrent output nodes (recurrent link to themselves)");
57 PROPERTY(recurrent_hidden_nodes,
60 "Create recurrent hidden nodes (recurrent link to themselves)");
62 PROPERTY(preserve_connectivity,
65 "Make sure the genotypes produce fully connected networks after crossover");
67 PROPERTY(contiguous_species,
70 "Contiguous species (NEAT selection strategy)");
75 "Genotypes under larva age (in generations) are protected from replacement");
77 PROPERTY(old_age,
int, 25,
"Age limit until genotypes are protected from replacement");
79 PROPERTY(min_viable_fitness,
82 "Minimum fitness value to be a candidate for direct mutation");
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");
89 PROPERTY(compatibility_threshold,
double, 5.0,
"Species distance threshold");
91 PROPERTY(min_species_size,
94 "Species with less members than this value will go extinct");
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");
101 PROPERTY(uniform_parents_distribution,
104 "Prefer any (rather than fitter) parents?");
106 PROPERTY(normalize_input,
bool,
false,
"Normalize input values");
107 PROPERTY(normalize_output,
bool,
false,
"Normalize output values");
111 extern Config g_config;
115 extern int g_outputs;
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.