20 #include <core/ann_activation_functions.h> 21 #include <core/darwin.h> 30 Link(NodeId in,
float weight,
bool recurrent)
31 : in(in), weight(weight), recurrent(recurrent) {}
35 virtual ~Node() =
default;
40 virtual void resetState() { value = 0; }
44 struct LstmNode :
public Node {
45 explicit LstmNode(
const array<float, Nlstm>& lw) : lw(lw) {}
48 const array<float, Nlstm>& lw;
53 void resetState()
override;
61 static constexpr
int kFirstInput = 1;
64 explicit Brain(
const Genotype* genotype);
67 void setInput(
int index,
float value)
override {
68 CHECK(index < g_inputs);
69 nodes_[kFirstInput + index]->value = value;
73 float output(
int index)
const override {
74 CHECK(index < g_outputs);
75 return nodes_[kFirstInput + g_inputs + index]->value;
78 void think()
override;
80 void resetState()
override {
81 for (
const auto& node : nodes_)
86 vector<unique_ptr<Node>> nodes_;
87 vector<NodeId> eval_order_;
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