Darwin Neuroevolution Framework
feedforward.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 "brain.h"
18 #include "cne.h"
19 #include "genotype.h"
20 
21 #include <core/utils.h>
22 #include <core/darwin.h>
23 
24 #include <memory>
25 #include <vector>
26 using namespace std;
27 
28 namespace cne {
29 namespace feedforward {
30 
31 struct Gene {
32  // the weights of a fully connected layer, w[INPUTS+1][OUTPUTS]
33  // w[i][j] : connection from in.i -> out.j
34  // w[last][j] : bias weight for out.j
35  ann::Matrix w;
36 
37  Gene() = default;
38  Gene(size_t inputs, size_t outputs);
39 
40  void crossover(const Gene& parent1, const Gene& parent2, float preference);
41  void mutate(float mutation_std_dev);
42  void randomize();
43 
44  friend void to_json(json& json_obj, const Gene& gene);
45  friend void from_json(const json& json_obj, Gene& gene);
46 };
47 
48 struct Layer : public cne::AnnLayer {
49  explicit Layer(const Gene& gene);
50 
51  // points directly to the weights in the genotype
52  const ann::Matrix& w;
53 
54  void evaluate(const vector<float>& inputs) override;
55  void resetState() override;
56 };
57 
58 struct GenotypeTraits {
59  using HiddenLayerGene = feedforward::Gene;
60  using OutputLayerGene = feedforward::Gene;
61 };
62 
63 using Genotype = cne::Genotype<GenotypeTraits>;
64 
65 struct BrainTraits {
66  using Genotype = feedforward::Genotype;
67  using HiddenLayer = feedforward::Layer;
68  using OutputLayer = feedforward::Layer;
69 
70  static constexpr bool kNormalizeHiddenLayers = true;
71 };
72 
73 using Brain = cne::Brain<BrainTraits>;
74 
75 } // namespace feedforward
76 } // namespace cne
void randomize(Matrix &w)
Randomize the values in a Matrix.
Definition: ann_dynamic.h:62
Conventional Neuroevolution (CNE) populations.
Definition: brain.h:26
STL namespace.