edbeeching / godot_rl_agents

An Open Source package that allows video game creators, AI researchers and hobbyists the opportunity to learn complex behaviors for their Non Player Characters or agents
MIT License
942 stars 69 forks source link

Fixes clean_rl_example.py default env path and related CUSTOM_ENV documentation section #116

Closed Ivan-267 closed 1 year ago

Ivan-267 commented 1 year ago

When following the custom environment tutorial (https://github.com/edbeeching/godot_rl_agents/blob/main/docs/CUSTOM_ENV.md) and using: python examples/clean_rl_example.py —env-id=debug some errors are encountered:

1) clean_rl_example.py: error: unrecognized arguments: —env-id=debug

That error is fixed in this patch by removing the argument from the documentation.

2) assert os.path.exists(filename) AssertionError

That error is fixed by removing the default path from clean_rl_example.py.