Darwin Neuroevolution Framework
lstm.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 lstm {
31 
32 enum LstmWeightIds { Wi, Ui, Bi, Wf, Uf, Bf, Wo, Uo, Bo, Wc, Uc, Bc, Nweights };
33 
34 struct Gene : public feedforward::Gene {
35  // LSTM weights, lw[OUTPUTS][lstm::Nweights]
36  // lw[i][j] : i = output neuron
37  ann::Matrix lw;
38 
39  Gene() = default;
40  Gene(size_t inputs, size_t outputs);
41 
42  void crossover(const Gene& parent1, const Gene& parent2, float preference);
43  void mutate(float mutation_std_dev);
44  void randomize();
45 
46  friend void to_json(json& json_obj, const Gene& gene);
47  friend void from_json(const json& json_obj, Gene& gene);
48 };
49 
50 struct Layer : public cne::AnnLayer {
51  explicit Layer(const Gene& gene);
52 
53  vector<float> cells;
54 
55  // points directly to the weights in the genotype
56  const ann::Matrix& w;
57  const ann::Matrix& lw;
58 
59  void evaluate(const vector<float>& inputs) override;
60  void resetState() override;
61 };
62 
63 struct GenotypeTraits {
64  using HiddenLayerGene = lstm::Gene;
65  using OutputLayerGene = feedforward::Gene;
66 };
67 
68 using Genotype = cne::Genotype<GenotypeTraits>;
69 
70 struct BrainTraits {
71  using Genotype = lstm::Genotype;
72  using HiddenLayer = lstm::Layer;
73  using OutputLayer = feedforward::Layer;
74 
75  static constexpr bool kNormalizeHiddenLayers = false;
76 };
77 
78 using Brain = cne::Brain<BrainTraits>;
79 
80 } // namespace lstm
81 } // namespace cne
void randomize(Matrix &w)
Randomize the values in a Matrix.
Definition: ann_dynamic.h:62
Definition: evolution_window.h:22
Conventional Neuroevolution (CNE) populations.
Definition: brain.h:26
STL namespace.