Darwin Neuroevolution Framework
lstm_lite.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 // A drastically simplified LSTM variation, where the inner cell value
30 // is the only recurrence, with a single threshold gate which controls
31 // the updates to this cell.
32 
33 namespace cne {
34 namespace lstm_lite {
35 
36 enum LstmLiteWeightIds { Wg, Ug, Bg, Wc, Nweights };
37 
38 struct Gene : public feedforward::Gene {
39  // LSTM_Lite weights: lw[OUTPUTS][Nweights]
40  ann::Matrix lw;
41 
42  Gene() = default;
43  Gene(size_t inputs, size_t outputs);
44 
45  void crossover(const Gene& parent1, const Gene& parent2, float preference);
46  void mutate(float mutation_std_dev);
47  void randomize();
48 
49  friend void to_json(json& json_obj, const Gene& gene);
50  friend void from_json(const json& json_obj, Gene& gene);
51 };
52 
53 struct Layer : public cne::AnnLayer {
54  explicit Layer(const Gene& gene);
55 
56  vector<float> cells;
57 
58  // points directly to the weights in the genotype
59  const ann::Matrix& w;
60  const ann::Matrix& lw;
61 
62  void evaluate(const vector<float>& inputs) override;
63  void resetState() override;
64 };
65 
66 struct GenotypeTraits {
67  using HiddenLayerGene = lstm_lite::Gene;
68  using OutputLayerGene = feedforward::Gene;
69 };
70 
71 using Genotype = cne::Genotype<GenotypeTraits>;
72 
73 struct BrainTraits {
74  using Genotype = lstm_lite::Genotype;
75  using HiddenLayer = lstm_lite::Layer;
76  using OutputLayer = feedforward::Layer;
77 
78  static constexpr bool kNormalizeHiddenLayers = false;
79 };
80 
81 using Brain = cne::Brain<BrainTraits>;
82 
83 } // namespace lstm_lite
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.