22 #include "feedforward.h" 25 #include <core/ann_dynamic.h> 26 #include <core/ann_utils.h> 27 #include <core/utils.h> 28 #include <core/darwin.h> 37 struct Gene :
public feedforward::Gene {
42 Gene(
size_t inputs,
size_t outputs);
44 void crossover(
const Gene& parent1,
const Gene& parent2,
float preference);
45 void mutate(
float mutation_std_dev);
48 friend void to_json(json& json_obj,
const Gene& gene);
49 friend void from_json(
const json& json_obj, Gene& gene);
52 struct Layer :
public cne::AnnLayer {
53 explicit Layer(
const Gene& gene);
60 vector<float> prev_values;
62 void evaluate(
const vector<float>& inputs)
override;
63 void resetState()
override;
66 struct GenotypeTraits {
67 using HiddenLayerGene = full_rnn::Gene;
68 using OutputLayerGene = full_rnn::Gene;
71 using Genotype = cne::Genotype<GenotypeTraits>;
74 using Genotype = full_rnn::Genotype;
75 using HiddenLayer = full_rnn::Layer;
76 using OutputLayer = full_rnn::Layer;
78 static constexpr
bool kNormalizeHiddenLayers =
true;
81 using Brain = cne::Brain<BrainTraits>;
void randomize(Matrix &w)
Randomize the values in a Matrix.
Definition: ann_dynamic.h:62
Conventional Neuroevolution (CNE) populations.
Definition: brain.h:26