December 2019
Intermediate to advanced
368 pages
11h 10m
English
The experiment runner implementation creates the concurrent evaluation environment and runs the evolution loop over the population of individuals. Let's discuss the essential implementation details:
Model = neuroevolution.models.__dict__[config['model']] all_tstart = time.time() def make_env(b): return gym_tensorflow.make(game=config["game"], batch_size=b) worker = ConcurrentWorkers(make_env, Model, batch_size=64)
Read now
Unlock full access