19 #include "thread_pool.h" 21 #include <third_party/json/json.h> 42 float best_fitness = 0;
45 float median_fitness = 0;
48 float worst_fitness = 0;
59 shared_ptr<core::PropertySet> calibration_fitness);
80 inline auto customStringify(core::TypeTag<FitnessInfoKind>) {
82 { FitnessInfoKind::SamplesOnly,
"samples_only" },
83 { FitnessInfoKind::FullCompressed,
"full_compressed" },
84 { FitnessInfoKind::FullRaw,
"full_raw" },
95 inline auto customStringify(core::TypeTag<ProfileInfoKind>) {
97 { ProfileInfoKind::GenerationOnly,
"generation_only" },
98 { ProfileInfoKind::AllStages,
"all_stages" },
105 PROPERTY(max_generations,
108 "Automatically stop the experiment after the max number of generations");
110 PROPERTY(save_champion_genotype,
113 "Save the best genotype from each generation");
115 PROPERTY(fitness_information,
117 FitnessInfoKind::FullCompressed,
118 "What kind of fitness information to save");
120 PROPERTY(save_genealogy,
123 "Save the genealogy information (can be very large!)");
125 PROPERTY(profile_information,
127 ProfileInfoKind::GenerationOnly,
128 "Performance trace (counters/timings)");
131 vector<CompressedFitnessValue> compressFitness(
const Population* population);
135 using Clock = std::chrono::steady_clock;
149 EvolutionStage(
const string& name_,
size_t size_, uint32_t annotations);
152 void start() { start_timestamp_ = Clock::now(); }
155 void finish() { finish_timestamp_ = Clock::now(); }
158 const string&
name()
const {
return name_; }
161 double elapsed()
const;
164 int progressPercent()
const;
167 const vector<EvolutionStage>&
subStages()
const {
return sub_stages_; }
170 void advanceProgress(
size_t increment);
171 void addAnnotations(uint32_t annotations);
172 uint32_t annotations()
const {
return annotations_; }
174 friend void to_json(json& json_obj,
const EvolutionStage& stage);
179 size_t progress_ = 0;
180 Clock::time_point start_timestamp_;
181 Clock::time_point finish_timestamp_;
182 uint32_t annotations_ = 0;
183 vector<EvolutionStage> sub_stages_;
198 shared_ptr<core::PropertySet> calibration_fitness,
205 vector<GenerationSummary> generations_;
207 shared_ptr<const Experiment> experiment_;
210 unique_ptr<DbEvolutionTrace> db_trace_;
230 virtual void beginStage(
const string& name,
size_t size, uint32_t annotations) = 0;
233 virtual void finishStage(
const string& name) = 0;
239 virtual void reportProgress(
size_t increment) = 0;
253 static void beginStage(
const string& name,
size_t size, uint32_t annotations) {
254 if (progress_monitor_ !=
nullptr) {
255 progress_monitor_->beginStage(name, size, annotations);
261 if (progress_monitor_ !=
nullptr) {
262 progress_monitor_->finishStage(name);
268 if (progress_monitor_ !=
nullptr) {
269 progress_monitor_->reportProgress(increment);
275 CHECK(progress_monitor_ ==
nullptr);
276 progress_monitor_ = monitor;
303 StateChanged = 1 << 0,
304 ProgressUpdate = 1 << 1,
305 EndGeneration = 1 << 2,
306 EndEvolution = 1 << 3,
307 NewExperiment = 1 << 4,
340 shared_ptr<const EvolutionTrace>
trace;
367 bool newExperiment(shared_ptr<Experiment> experiment,
const EvolutionConfig& config);
396 void waitForState(State target_state)
const;
400 pp::ParallelForSupport::init(
this);
401 ProgressManager::registerMonitor(
this);
406 void evolutionCycle();
409 void checkpoint()
override;
412 void beginStage(
const string& name,
size_t size, uint32_t annotations)
override;
413 void finishStage(
const string& name)
override;
414 void reportProgress(
size_t increment = 1)
override;
417 std::thread::id main_thread_id_;
420 mutable condition_variable state_cv_;
422 State state_ = State::Initializing;
423 vector<EvolutionStage> stage_stack_;
425 EvolutionConfig config_;
428 unique_ptr<Population> population_;
429 unique_ptr<Domain> domain_;
431 shared_ptr<Experiment> experiment_;
432 shared_ptr<EvolutionTrace> trace_;
446 StageScope(
const string& name,
size_t size = 0, uint32_t annotations = 0)
448 ProgressManager::beginStage(name, size, annotations);
static void finishStage(const string &name)
Reports the finish of a stage.
Definition: evolution.h:260
FitnessInfoKind
The kind of captured fitness data.
Definition: evolution.h:74
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
~StageScope()
Finishes the stage.
Definition: evolution.h:452
Summary of a generation (fitness samples, best genotype, ...)
Definition: evolution.h:37
State snapshot of an evolution run.
Definition: evolution.h:323
EventFlag
Event hints (as bit flags)
Definition: evolution.h:302
void finish()
Marks the finish of the stage.
Definition: evolution.h:155
const vector< EvolutionStage > & subStages() const
List of sub-stages, if any.
Definition: evolution.h:167
One fitness data point.
Definition: evolution.h:63
const string & name() const
Stage name.
Definition: evolution.h:158
Just the best/median/worst/calibration fitness values.
const EvolutionConfig & config() const
Accessor to the associated EvolutionConfig instance.
Definition: evolution.h:376
The controller for running evolution experiments.
Definition: evolution.h:284
void start()
Marks the start of the stage.
Definition: evolution.h:152
Interface for monitoring evolution progress.
Definition: evolution.h:219
Timings for the full stages tree for a generation.
A scope-based Stage wrapper.
Definition: evolution.h:442
static void reportProgress(size_t increment=1)
Reports stage progress.
Definition: evolution.h:267
core::PubSub< EvolutionStage > top_stages
Channel for publishing the completition of a generation's top stage.
Definition: evolution.h:319
State
Evolution state.
Definition: evolution.h:291
EvolutionStage stage
Currently running stage (most inner stage if there are nested stages)
Definition: evolution.h:332
Encapsulates the runtime experiment state.
Definition: darwin.h:328
Evolution * evolution()
Accessor to the Evolution singleton instance.
Definition: evolution.h:436
Annotation
Stage bit flags.
Definition: evolution.h:139
All the fitness values, raw.
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Recording of a evolution experiment run.
Definition: evolution.h:187
core::PubSub< GenerationSummary > generation_summary
Channel for publishing generation summaries.
Definition: evolution.h:316
Key Darwin Neuroevolution Framework interfaces.
static void beginStage(const string &name, size_t size, uint32_t annotations)
Reports the start of a stage.
Definition: evolution.h:253
Classes derived from this are not copyable or movable.
Definition: utils.h:69
Connects the progress updates with a registered progress monitor.
Definition: evolution.h:250
shared_ptr< Genotype > champion
Best genotype in the generation.
Definition: evolution.h:54
shared_ptr< core::PropertySet > calibration_fitness
Calibration fitness values.
Definition: evolution.h:51
Interface to a domain implementation.
Definition: darwin.h:229
ProfileInfoKind
The kind of captured profile data.
Definition: evolution.h:90
static void registerMonitor(ProgressMonitor *monitor)
Registers a ProgressMonitor implementation.
Definition: evolution.h:274
core::PubSub< uint32_t > events
Evolution events notifications.
Definition: evolution.h:313
Handles types with a fixed, known set of values (enumerations for example)
Definition: stringify.h:85
Settings for an evolution experiment run.
Definition: evolution.h:104
All the fitness values, compressed.
Tracks the execution of an execution (sub)stage.
Definition: evolution.h:134
const Experiment & experiment() const
Accessor to the associted Experiment instance.
Definition: evolution.h:373
Just the per-generation elapsed timings.
An optional thread pool controller, which can be used to pause/resume/cancel the queued work items...
Definition: thread_pool.h:107
const Stringify< T > * stringify()
Returns the stringifier for type T.
Definition: stringify.h:166
shared_ptr< const Experiment > experiment
The associated Experiment instance.
Definition: evolution.h:336
shared_ptr< const EvolutionTrace > trace
The associated EvolutionTrace instance.
Definition: evolution.h:340
StageScope(const string &name, size_t size=0, uint32_t annotations=0)
Starts a new stage, which will be automatically completed at the end of the current scope...
Definition: evolution.h:446