Darwin Neuroevolution Framework
brain.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 "genotype.h"
18 #include "neat.h"
19 
20 #include <core/ann_activation_functions.h>
21 #include <core/darwin.h>
22 
23 namespace neat {
24 
25 struct Link {
26  NodeId in;
27  float weight;
28  bool recurrent;
29 
30  Link(NodeId in, float weight, bool recurrent)
31  : in(in), weight(weight), recurrent(recurrent) {}
32 };
33 
34 struct Node {
35  virtual ~Node() = default;
36 
37  float value = 0;
38  vector<Link> inputs;
39 
40  virtual void resetState() { value = 0; }
41  virtual void activate(float input) { value = ann::activate(input); }
42 };
43 
44 struct LstmNode : public Node {
45  explicit LstmNode(const array<float, Nlstm>& lw) : lw(lw) {}
46 
47  // LSTM weights (points directly into the genotype)
48  const array<float, Nlstm>& lw;
49 
50  // LSTM state
51  float cell = 0;
52 
53  void resetState() override;
54 
55  void activate(float input) override;
56 };
57 
58 // Phenotype
59 class Brain : public darwin::Brain {
60  // see the genotype comments regarding the node numbering
61  static constexpr int kFirstInput = 1;
62 
63  public:
64  explicit Brain(const Genotype* genotype);
65 
66  // index is the input index [0, INPUTS)
67  void setInput(int index, float value) override {
68  CHECK(index < g_inputs);
69  nodes_[kFirstInput + index]->value = value;
70  }
71 
72  // index is the output index [0, OUTPUTS)
73  float output(int index) const override {
74  CHECK(index < g_outputs);
75  return nodes_[kFirstInput + g_inputs + index]->value;
76  }
77 
78  void think() override;
79 
80  void resetState() override {
81  for (const auto& node : nodes_)
82  node->resetState();
83  }
84 
85  private:
86  vector<unique_ptr<Node>> nodes_;
87  vector<NodeId> eval_order_;
88 };
89 
90 } // namespace neat
The interface to the Phenotype
Definition: darwin.h:69
NeuroEvolution of Augmenting Topologies (NEAT)
Definition: brain.cpp:20
float activate(float x)
Applies the selected activation function.
Definition: ann_activation_functions.h:65