Darwin Neuroevolution Framework
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 #pragma once
16 
17 #include "brain.h"
18 #include "cne.h"
19 #include "feedforward.h"
20 #include "genotype.h"
21 
22 #include <core/utils.h>
23 #include <core/darwin.h>
24 
25 #include <memory>
26 #include <vector>
27 using namespace std;
28 
29 namespace cne {
30 namespace rnn {
31 
32 struct Gene : public feedforward::Gene {
33  // recurrent self links
34  // (this matrix is actually a 1xN one dimensional array)
35  ann::Matrix rw;
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  Layer(const Gene& gene);
50 
51  // points directly to the weights in the genotype
52  const ann::Matrix& w;
53  const ann::Matrix& rw;
54 
55  void evaluate(const vector<float>& inputs) override;
56  void resetState() override;
57 };
58 
59 struct GenotypeTraits {
60  using HiddenLayerGene = rnn::Gene;
61  using OutputLayerGene = rnn::Gene;
62 };
63 
64 using Genotype = cne::Genotype<GenotypeTraits>;
65 
66 struct BrainTraits {
67  using Genotype = rnn::Genotype;
68  using HiddenLayer = rnn::Layer;
69  using OutputLayer = rnn::Layer;
70 
71  static constexpr bool kNormalizeHiddenLayers = true;
72 };
73 
74 using Brain = cne::Brain<BrainTraits>;
75 
76 } // namespace rnn
77 } // 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.