add car racing sim and first geno to phenotype mapper experiment.

This commit is contained in:
2025-09-24 14:15:18 +02:00
parent 581109117c
commit 86c67b66f8
17 changed files with 1015 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
import gymnasium as gym
env = gym.make("CarRacing-v3", render_mode="human")
obs, info = env.reset()
for _ in range(1000):
action = env.action_space.sample()
_, reward, terminated, truncated, _ = env.step(action)
if terminated or truncated:
obs, info = env.reset()
env.close()