Darwin Neuroevolution Framework
ann_utils.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 "ann_activation_functions.h"
18 #include "utils.h"
19 #include "matrix.h"
20 #include "properties.h"
21 
22 #include <assert.h>
23 #include <cmath>
24 #include <random>
25 #include <vector>
26 using namespace std;
27 
28 namespace ann {
29 
30 extern bool g_use_AVX;
31 
33 struct Config : public core::PropertySet {
34  PROPERTY(mutation_normal_distribution,
35  bool,
36  true,
37  "Use normal (instead of uniform) distribution for mutations");
38 
39  PROPERTY(mutation_std_dev,
40  float,
41  1.0f,
42  "Mutation standard deviation. Used if mutation_normal_distribution is true.");
43 
44  PROPERTY(connection_range, float, 64, "Initial connection values range");
45  PROPERTY(connection_resolution, float, 0.01f, "Connection values resolution");
46 
47  PROPERTY(sparse_weights,
48  bool,
49  false,
50  "Generate sparse weights for the initial (random) population");
51 
52  PROPERTY(weights_density,
53  float,
54  0.2f,
55  "Probability of non-zero weights (if sparse_weights is true)");
56 };
57 
58 // global configuration values
59 // (shall not be changed while the evolution is running)
60 extern Config g_config;
61 
63 inline float roundWeight(float w) {
64  const float resolution = g_config.connection_resolution;
65  return int(w / resolution) * resolution;
66 }
67 
72 template <class T, class RND>
73 void mutateValue(T& value, RND& rnd, T std_dev) {
74  if (g_config.mutation_normal_distribution) {
75  std::normal_distribution<T> dist(value, std_dev);
76  value = roundWeight(dist(rnd));
77  } else {
78  const float range = g_config.connection_range;
79  std::uniform_real_distribution<T> dist(-range, range);
80  value = roundWeight(dist(rnd));
81  }
82 }
83 
84 // CONSIDER: do we really need this alias?
85 using Matrix = core::Matrix<float>;
86 
87 } // namespace ann
STL namespace.
float connection_resolution
"Connection values resolution"
Definition: ann_utils.h:45
void mutateValue(T &value, RND &rnd, T std_dev)
Mutate a value.
Definition: ann_utils.h:73
bool mutation_normal_distribution
"Use normal (instead of uniform) distribution for mutations"
Definition: ann_utils.h:37
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
float roundWeight(float w)
Ajust a value by rounding to Config::connection_resolution.
Definition: ann_utils.h:63
Artificial Neural Networks (ANN) building blocks.
Definition: ann_activation_functions.cpp:17
The ANN library configuration.
Definition: ann_utils.h:33
float connection_range
"Initial connection values range"
Definition: ann_utils.h:44