Darwin Neuroevolution Framework
ann_dynamic.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_utils.h"
18 #include "utils.h"
19 #include "darwin.h"
20 
21 #include <algorithm>
22 #include <cmath>
23 #include <random>
24 using namespace std;
25 
26 namespace ann {
27 
28 void initAnnLibrary();
29 
31 template <class T>
32 void reset(std::vector<T>& v) {
33  std::fill(v.begin(), v.end(), T());
34 }
35 
37 inline void reset(Matrix& matrix) {
38  reset(matrix.values);
39 }
40 
41 typedef void (*EvaluateLayer)(const vector<float>& in,
42  vector<float>& out,
43  const Matrix& w);
44 
46 extern EvaluateLayer evaluateLayer;
47 
50 inline void activateLayer(vector<float>& out) {
51  for (float& value : out)
52  value = ann::activate(value);
53 }
54 
62 inline void randomize(Matrix& w) {
63  const float range = g_config.connection_range;
64 
65  std::random_device rd;
66  std::default_random_engine rnd(rd());
67  std::uniform_real_distribution<float> dist(-range, range);
68 
69  if (g_config.sparse_weights) {
70  std::bernoulli_distribution density(g_config.weights_density);
71  for (float& value : w.values)
72  value = density(rnd) ? ann::roundWeight(dist(rnd)) : 0;
73  } else {
74  for (float& value : w.values)
75  value = ann::roundWeight(dist(rnd));
76  }
77 }
78 
79 } // namespace ann
void randomize(Matrix &w)
Randomize the values in a Matrix.
Definition: ann_dynamic.h:62
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
STL namespace.
void activateLayer(vector< float > &out)
Apply the activation function over a set of values.
Definition: ann_dynamic.h:50
float roundWeight(float w)
Ajust a value by rounding to Config::connection_resolution.
Definition: ann_utils.h:63
float weights_density
"Probability of non-zero weights (if sparse_weights is true)"
Definition: ann_utils.h:55
Artificial Neural Networks (ANN) building blocks.
Definition: ann_activation_functions.cpp:17
float activate(float x)
Applies the selected activation function.
Definition: ann_activation_functions.h:65
float connection_range
"Initial connection values range"
Definition: ann_utils.h:44
bool sparse_weights
"Generate sparse weights for the initial (random) population"
Definition: ann_utils.h:50