Skip to content

Instantly share code, notes, and snippets.

View CodeReclaimers's full-sized avatar

CodeReclaimers CodeReclaimers

View GitHub Profile
@CodeReclaimers
CodeReclaimers / config
Last active August 24, 2022 04:34
OpenAI Gym LunarLander-v2 writeup
# 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