├── .gitignore ├── README.md ├── car.png ├── gym_game ├── __init__.py └── envs │ ├── __init__.py │ ├── custom_env.py │ └── pygame_2d.py ├── main.py ├── map.png └── neat ├── PyCar.py ├── car.png ├── config-feedforward.txt └── map.png /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | YouTube Project 2 | 3 | 1. Custom OpenAI Gym environment 4 | 2. NEAT-python 5 | -------------------------------------------------------------------------------- /car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/car.png -------------------------------------------------------------------------------- /gym_game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/gym_game/__init__.py -------------------------------------------------------------------------------- /gym_game/envs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/gym_game/envs/__init__.py -------------------------------------------------------------------------------- /gym_game/envs/custom_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/gym_game/envs/custom_env.py -------------------------------------------------------------------------------- /gym_game/envs/pygame_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/gym_game/envs/pygame_2d.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/main.py -------------------------------------------------------------------------------- /map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/map.png -------------------------------------------------------------------------------- /neat/PyCar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/neat/PyCar.py -------------------------------------------------------------------------------- /neat/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/neat/car.png -------------------------------------------------------------------------------- /neat/config-feedforward.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/neat/config-feedforward.txt -------------------------------------------------------------------------------- /neat/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monokim/framework_tutorial/HEAD/neat/map.png --------------------------------------------------------------------------------