yaricom / goNEAT

The GOLang implementation of NeuroEvolution of Augmented Topologies (NEAT) method to evolve and train Artificial Neural Networks without error back propagation
MIT License
75 stars 19 forks source link

Update GenerationEvaluator to take context.Context as parameter #49

Closed yaricom closed 2 years ago

yaricom commented 2 years ago

Currently we have *neat.Options as parameter which is not generalizable for different types of algorithms and experiments. We need to substitute it with context.Context holding specific options for each type of algorithm, including basic neat.Options

yaricom commented 2 years ago

Done