19 #include "feedforward.h" 22 #include <core/utils.h> 23 #include <core/darwin.h> 32 enum LstmWeightIds { Wi,
Ui, Bi, Wf, Uf, Bf, Wo, Uo, Bo, Wc, Uc, Bc, Nweights };
34 struct Gene :
public feedforward::Gene {
40 Gene(
size_t inputs,
size_t outputs);
42 void crossover(
const Gene& parent1,
const Gene& parent2,
float preference);
43 void mutate(
float mutation_std_dev);
46 friend void to_json(json& json_obj,
const Gene& gene);
47 friend void from_json(
const json& json_obj, Gene& gene);
50 struct Layer :
public cne::AnnLayer {
51 explicit Layer(
const Gene& gene);
59 void evaluate(
const vector<float>& inputs)
override;
60 void resetState()
override;
63 struct GenotypeTraits {
64 using HiddenLayerGene = lstm::Gene;
65 using OutputLayerGene = feedforward::Gene;
68 using Genotype = cne::Genotype<GenotypeTraits>;
71 using Genotype = lstm::Genotype;
72 using HiddenLayer = lstm::Layer;
73 using OutputLayer = feedforward::Layer;
75 static constexpr
bool kNormalizeHiddenLayers =
false;
78 using Brain = cne::Brain<BrainTraits>;
void randomize(Matrix &w)
Randomize the values in a Matrix.
Definition: ann_dynamic.h:62
Definition: evolution_window.h:22
Conventional Neuroevolution (CNE) populations.
Definition: brain.h:26