Darwin Neuroevolution Framework
python_bindings.h
1 // Copyright 2020 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <core/darwin.h>
18 #include <core/utils.h>
19 #include <core/universe.h>
20 #include <core/ann_utils.h>
21 #include <core/evolution.h>
22 
23 #include <third_party/pybind11/pybind11.h>
24 
25 #include <memory>
26 #include <string>
27 #include <utility>
28 #include <unordered_map>
29 #include <functional>
30 #include <vector>
31 #include <optional>
32 using namespace std;
33 
34 namespace darwin::python {
35 
36 class PropertySet;
37 class Universe;
38 
48 class Property {
49  public:
50  explicit Property(core::Property* property);
51 
52  string name() const { return property_->name(); }
53 
54  string description() const { return property_->description(); }
55 
56  string defaultValue() const { return property_->defaultValue(); }
57 
58  vector<string> knownValues() const { return property_->knownValues(); }
59 
60  PropertySet variant() const;
61 
63  py::object autoCast() const;
64 
66  double asFloat() const;
67 
69  int asInt() const;
70 
72  bool asBool() const;
73 
75  string repr() const;
76 
78  string str() const;
79 
80  private:
81  core::Property* property_ = nullptr;
82 };
83 
85 class PropertySet {
86  public:
87  explicit PropertySet(core::PropertySet* property_set);
88 
90  string toJson() const;
91 
93  void fromJson(const string& json_str);
94 
96  Property getAttr(const string& name) const;
97 
99  void setAttrStr(const string& name, const string& value);
100 
102  void setAttrProperty(const string& name, const Property* property);
103 
105  void setAttrCast(const string& name, py::object value);
106 
108  void setAttrBool(const string& name, py::bool_ value);
109 
111  vector<string> dir() const;
112 
114  string repr() const;
115 
116  private:
117  core::Property* lookupProperty(const string& name) const;
118 
119  private:
120  core::PropertySet* property_set_ = nullptr;
121  unordered_map<string, core::Property*> index_;
122 };
123 
125 class Domain : public core::NonCopyable, public std::enable_shared_from_this<Domain> {
126  public:
127  explicit Domain(const string& name);
128 
129  const string& name() const { return name_; }
130 
131  PropertySet config() const { return PropertySet(config_.get()); }
132 
134  string repr() const;
135 
136  void seal(bool sealed = true);
137 
138  void materialize();
139 
140  void free();
141 
142  darwin::Domain* realDomain() const { return domain_.get(); }
143 
144  bool isUsed() const { return used_; }
145 
146  void setUsed(bool used) { used_ = used; }
147 
148  private:
149  string name_;
150  darwin::DomainFactory* factory_ = nullptr;
151  unique_ptr<core::PropertySet> config_;
152  unique_ptr<darwin::Domain> domain_;
153  bool sealed_ = false;
154  bool used_ = false;
155 };
156 
159  public std::enable_shared_from_this<Population> {
160  public:
161  explicit Population(const string& name);
162 
163  const string& name() const { return name_; }
164 
165  PropertySet config() const { return PropertySet(config_.get()); }
166 
167  int size() const { return size_; }
168 
169  void setSize(int size);
170 
172  string repr() const;
173 
175  unique_ptr<darwin::Genotype> getItem(int index) const;
176 
177  void seal(bool sealed = true);
178 
179  void materialize(const Domain& domain);
180 
181  void free();
182 
183  darwin::Population* realPopulation() const { return population_.get(); }
184 
185  bool isUsed() const { return used_; }
186 
187  void setUsed(bool used) { used_ = used; }
188 
189  void updateIndex();
190 
191  private:
192  string name_;
193  darwin::PopulationFactory* factory_ = nullptr;
194  unique_ptr<core::PropertySet> config_;
195  unique_ptr<darwin::Population> population_;
196  vector<size_t> ranking_index_;
197  int size_ = 5000;
198  bool sealed_ = false;
199  bool used_ = false;
200 };
201 
204  public:
205  explicit GenerationSummary(const darwin::GenerationSummary& summary)
206  : summary_(summary) {}
207 
208  int generation() const { return summary_.generation; }
209  float bestFitness() const { return summary_.best_fitness; }
210  float medianFitness() const { return summary_.median_fitness; }
211  float worstFitness() const { return summary_.worst_fitness; }
212 
213  optional<PropertySet> calibrationFitness() const;
214 
215  unique_ptr<darwin::Genotype> champion() const { return summary_.champion->clone(); }
216 
217  string repr() const;
218 
219  private:
220  darwin::GenerationSummary summary_;
221 };
222 
225  public std::enable_shared_from_this<Experiment> {
226  public:
227  Experiment(shared_ptr<Domain> domain,
228  shared_ptr<Population> population,
229  shared_ptr<Universe> universe,
230  optional<string> name);
231 
232  ~Experiment();
233 
234  PropertySet config() { return PropertySet(&config_); }
235  PropertySet coreConfig() { return PropertySet(&core_config_); }
236 
237  shared_ptr<Domain> domain() const { return domain_; }
238  shared_ptr<Population> population() const { return population_; }
239  shared_ptr<Universe> universe() const { return universe_; }
240  shared_ptr<darwin::EvolutionTrace> trace() const { return trace_; }
241 
242  optional<string> name() const { return name_; }
243 
244  void setName(const optional<string>& name);
245 
250  void initializePopulation();
251 
253  GenerationSummary evaluatePopulation();
254 
259  void createNextGeneration();
260 
262  void reset();
263 
265  string repr() const;
266 
267  private:
268  void throwIfDuplicateName(const optional<string>& name) const;
269 
270  private:
271  darwin::EvolutionConfig config_;
272  ann::Config core_config_;
273 
274  shared_ptr<Domain> domain_;
275  shared_ptr<Population> population_;
276  shared_ptr<Universe> universe_;
277 
278  optional<string> name_;
279 
280  shared_ptr<darwin::Experiment> experiment_;
281  shared_ptr<darwin::EvolutionTrace> trace_;
282 };
283 
285 class Universe : public core::NonCopyable, public std::enable_shared_from_this<Universe> {
286  public:
287  explicit Universe(unique_ptr<darwin::Universe> universe)
288  : universe_(std::move(universe)) {}
289 
290  ~Universe() { close(); }
291 
293  shared_ptr<Experiment> newExperiment(shared_ptr<Domain> domain,
294  shared_ptr<Population> population,
295  optional<string> name);
296 
298  void close() { universe_.reset(); }
299 
301  bool isClosed() const { return !universe_; }
302 
304  string path() const {
305  throwIfClosed();
306  return universe_->path();
307  }
308 
310  string repr() const;
311 
313  shared_ptr<Universe> ctxManagerEnter() {
314  throwIfClosed();
315  return shared_from_this();
316  }
317 
319  void ctxManagerExit(py::object /*exc_type*/,
320  py::object /*exc_value*/,
321  py::object /*traceback*/) {
322  close();
323  }
324 
325  darwin::Universe* realUniverse() const;
326 
327  private:
328  void throwIfClosed() const;
329 
330  private:
331  unique_ptr<darwin::Universe> universe_;
332 };
333 
335 vector<string> availableDomains();
336 
338 vector<string> availablePopulations();
339 
341 shared_ptr<Universe> createUniverse(const string& path);
342 
344 shared_ptr<Universe> openUniverse(const string& path);
345 
347 void addLogger(const function<void(const string&)>& logger);
348 
349 } // namespace darwin::python
bool isClosed() const
Returns true if the universe object is closed.
Definition: python_bindings.h:301
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
Summary of a generation (fitness samples, best genotype, ...)
Definition: evolution.h:37
The persistent storage for all the experiments and variations.
Definition: universe.h:111
void close()
Closes the Universe object.
Definition: python_bindings.h:298
string path() const
Returns the universe path name.
Definition: python_bindings.h:304
STL namespace.
void ctxManagerExit(py::object, py::object, py::object)
Python context manager support.
Definition: python_bindings.h:319
shared_ptr< Universe > ctxManagerEnter()
Python context manager support.
Definition: python_bindings.h:313
Interface to the domain factory.
Definition: darwin.h:263
Wraps a core::Property pointer (non-onwning)
Definition: python_bindings.h:48
Reflection interface to a property in a PropertySet.
Definition: properties.h:41
Wrapper for darwin::Universe.
Definition: python_bindings.h:285
Wrapper for darwin::GenerationSummary.
Definition: python_bindings.h:203
Python bindings.
Definition: python_bindings.cpp:32
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Wrapper for darwin::Domain.
Definition: python_bindings.h:125
Wrapper for darwin::Experiment plus evolution driving APIs.
Definition: python_bindings.h:224
Classes derived from this are not copyable or movable.
Definition: utils.h:69
Wraps a top-level core::PropertySet pointer (non-owning)
Definition: python_bindings.h:85
Interface to a domain implementation.
Definition: darwin.h:229
The ANN library configuration.
Definition: ann_utils.h:33
Settings for an evolution experiment run.
Definition: evolution.h:104
Wrapper for darwin::Population.
Definition: python_bindings.h:158
Interface to a population factory.
Definition: darwin.h:206