19 #include "feedforward.h" 22 #include <core/utils.h> 23 #include <core/darwin.h> 36 enum LstmLiteWeightIds { Wg, Ug, Bg, Wc, Nweights };
38 struct Gene :
public feedforward::Gene {
43 Gene(
size_t inputs,
size_t outputs);
45 void crossover(
const Gene& parent1,
const Gene& parent2,
float preference);
46 void mutate(
float mutation_std_dev);
49 friend void to_json(json& json_obj,
const Gene& gene);
50 friend void from_json(
const json& json_obj, Gene& gene);
53 struct Layer :
public cne::AnnLayer {
54 explicit Layer(
const Gene& gene);
62 void evaluate(
const vector<float>& inputs)
override;
63 void resetState()
override;
66 struct GenotypeTraits {
67 using HiddenLayerGene = lstm_lite::Gene;
68 using OutputLayerGene = feedforward::Gene;
71 using Genotype = cne::Genotype<GenotypeTraits>;
74 using Genotype = lstm_lite::Genotype;
75 using HiddenLayer = lstm_lite::Layer;
76 using OutputLayer = feedforward::Layer;
78 static constexpr
bool kNormalizeHiddenLayers =
false;
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