An open API service indexing awesome lists of open source software.

https://github.com/ajithvcoder/rl001

Develop custom reinforcement learning environment and agent play
https://github.com/ajithvcoder/rl001

Last synced: 3 months ago
JSON representation

Develop custom reinforcement learning environment and agent play

Awesome Lists containing this project

README

        

### RL001 - Reinforcement learning

Learn to create custom environment in Reinforcement learning

Prerequisties:
- Python
- Reinforcement learning basics

**Gallery**


### Base code for environments/Raw games

| Method | Environments | Link
| ---- | ------------ | ----
| Discrete | Snake | [here](./Lesson_01_DotsAndLines/basic_games/snake.py)
| Discrete | Car | [here](./Lesson_01_DotsAndLines/basic_games/car.py)
| Discrete | Bird | [here](./Lesson_01_DotsAndLines/basic_games/bird.py)

### Lesson 01 Dots And Lines

| Lesson | Environment |Method | Link |
| ------------ | ----- | ---- | ---- |
| Dots And Lines| Snake | Discrete action, non image observation | [here](./Lesson_01_DotsAndLines/snake_rl/discrete_nonimage/)
| Dots And Lines| Snake | Discrete action, image observation | [here](./Lesson_01_DotsAndLines/snake_rl/discrete_image/) (In progress)
| Dots And Lines| Car | Discrete action, non image observation | [here](./Lesson_01_DotsAndLines/car_rl/discrete_nonimage/)
| Dots And Lines| Car | Discrete action, image observation | [here](./Lesson_01_DotsAndLines/car_rl/discrete_image/) (In progress)
| Dots And Lines| Bird | Discrete action, non image observation| [here](./Lesson_01_DotsAndLines/bird_rl/discrete_nonimage/)
| Dots And Lines| Bird | Discrete action, image observation | [here](./Lesson_01_DotsAndLines/bird_rl/discrete_image/) (In progress)