Darwin Neuroevolution Framework
|
The ANN library configuration. More...
#include <ann_utils.h>
Public Attributes | |
bool | mutation_normal_distribution = true |
"Use normal (instead of uniform) distribution for mutations" | |
float | mutation_std_dev = 1.0f |
"Mutation standard deviation. Used if mutation_normal_distribution is true." | |
float | connection_range = 64 |
"Initial connection values range" | |
float | connection_resolution = 0.01f |
"Connection values resolution" | |
bool | sparse_weights = false |
"Generate sparse weights for the initial (random) population" | |
float | weights_density = 0.2f |
"Probability of non-zero weights (if sparse_weights is true)" | |
Additional Inherited Members | |
![]() | |
vector< Property * > | properties () |
Accessor to the list of properties. | |
vector< const Property * > | properties () const |
Accessor to the list of properties. | |
void | resetToDefaultValues () |
Resets all the properties to the default values. | |
void | copyFrom (const PropertySet &src) |
Transfer values between two property sets. | |
void | seal (bool sealed=true) |
After sealing a PropertySet, all attempts to modify it through the Property interface will throw an exception (even if setting to the same value) | |
bool | sealed () const |
Returns true if the property set is sealed. | |
void | onPropertyChange (const Property *property) |
Called before updating a property value. | |
json | toJson () const |
Serialize all the properties to a json object. More... | |
void | fromJson (const json &json_obj) |
Deserialize a set of properties from a json object. More... | |
The ANN library configuration.