This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# neat-python configuration for the LunarLander-v2 environment on OpenAI Gym | |
# Sample run here: https://gym.openai.com/evaluations/eval_FbKq5MxAS9GlvB7W6ioJkg | |
# NOTE: This was run using revision 1186029827c156e0ff6f9b36d6847eb2aa56757a of CodeReclaimers/neat-python, not a release on PyPI. | |
[NEAT] | |
pop_size = 150 | |
# Note: the fitness threshold will never be reached because | |
# we are controlling the termination ourselves based on simulation performance. | |
fitness_criterion = max | |
fitness_threshold = 1000.0 |