Darwin Neuroevolution Framework
full_rnn.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 // an RNN with fully connected recurrent connections
16 // (from a layer to itself)
17 
18 #pragma once
19 
20 #include "brain.h"
21 #include "cne.h"
22 #include "feedforward.h"
23 #include "genotype.h"
24 
25 #include <core/ann_dynamic.h>
26 #include <core/ann_utils.h>
27 #include <core/utils.h>
28 #include <core/darwin.h>
29 
30 #include <memory>
31 #include <vector>
32 using namespace std;
33 
34 namespace cne {
35 namespace full_rnn {
36 
37 struct Gene : public feedforward::Gene {
38  // recurrent links
39  ann::Matrix rw;
40 
41  Gene() = default;
42  Gene(size_t inputs, size_t outputs);
43 
44  void crossover(const Gene& parent1, const Gene& parent2, float preference);
45  void mutate(float mutation_std_dev);
46  void randomize();
47 
48  friend void to_json(json& json_obj, const Gene& gene);
49  friend void from_json(const json& json_obj, Gene& gene);
50 };
51 
52 struct Layer : public cne::AnnLayer {
53  explicit Layer(const Gene& gene);
54 
55  // points directly to the weights in the genotype
56  const ann::Matrix& w;
57  const ann::Matrix& rw;
58 
59  // previous values
60  vector<float> prev_values;
61 
62  void evaluate(const vector<float>& inputs) override;
63  void resetState() override;
64 };
65 
66 struct GenotypeTraits {
67  using HiddenLayerGene = full_rnn::Gene;
68  using OutputLayerGene = full_rnn::Gene;
69 };
70 
71 using Genotype = cne::Genotype<GenotypeTraits>;
72 
73 struct BrainTraits {
74  using Genotype = full_rnn::Genotype;
75  using HiddenLayer = full_rnn::Layer;
76  using OutputLayer = full_rnn::Layer;
77 
78  static constexpr bool kNormalizeHiddenLayers = true;
79 };
80 
81 using Brain = cne::Brain<BrainTraits>;
82 
83 } // namespace full_rnn
84 } // 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.