19 #include "feedforward.h" 22 #include <core/utils.h> 23 #include <core/darwin.h> 32 struct Gene :
public feedforward::Gene {
38 Gene(
size_t inputs,
size_t outputs);
40 void crossover(
const Gene& parent1,
const Gene& parent2,
float preference);
41 void mutate(
float mutation_std_dev);
44 friend void to_json(json& json_obj,
const Gene& gene);
45 friend void from_json(
const json& json_obj, Gene& gene);
48 struct Layer :
public cne::AnnLayer {
49 Layer(
const Gene& gene);
55 void evaluate(
const vector<float>& inputs)
override;
56 void resetState()
override;
59 struct GenotypeTraits {
60 using HiddenLayerGene = rnn::Gene;
61 using OutputLayerGene = rnn::Gene;
64 using Genotype = cne::Genotype<GenotypeTraits>;
67 using Genotype = rnn::Genotype;
68 using HiddenLayer = rnn::Layer;
69 using OutputLayer = rnn::Layer;
71 static constexpr
bool kNormalizeHiddenLayers =
true;
74 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