Update README.md
Browse files
README.md
CHANGED
|
@@ -22,13 +22,11 @@ model-index:
|
|
| 22 |
---
|
| 23 |
|
| 24 |
# **DQN** Agent playing **SpaceInvadersNoFrameskip-v4** ๐
|
| 25 |
-
|
| 26 |
-
using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3)
|
| 27 |
-
and the [RL Zoo](https://github.com/DLR-RM/rl-baselines3-zoo).
|
| 28 |
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
|
| 33 |
## Usage (with SB3 RL Zoo) ๐
|
| 34 |
|
|
@@ -55,6 +53,7 @@ python -m rl_zoo3.enjoy --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/
|
|
| 55 |
```
|
| 56 |
|
| 57 |
## Training (with the RL Zoo) ๐พ
|
|
|
|
| 58 |
```
|
| 59 |
python -m rl_zoo3.train --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/
|
| 60 |
# Upload the model and generate video (when possible)
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
# **DQN** Agent playing **SpaceInvadersNoFrameskip-v4** ๐
|
| 25 |
+
Imagine you have a robot friend who loves playing a game called Space Invaders. We've taught this robot how to play the game really well using a special technique called Deep Q-Network (DQN). The robot can now play Space Invaders without missing a single frame!
|
|
|
|
|
|
|
| 26 |
|
| 27 |
+
We used a special library called Stable Baselines3 to help teach the robot how to play. It's like a school for robots to learn cool things. And to make things even easier, we have a special place called the RL Zoo where the robot can practice and get even better at playing the game.
|
| 28 |
+
|
| 29 |
+
So, what you're seeing is a video of our robot friend playing Space Invaders like a pro, thanks to the training it received using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3) and the [RL Zoo](https://github.com/DLR-RM/rl-baselines3-zoo). It's like watching a robot master a game after lots of practice and learning in a special training ground!
|
| 30 |
|
| 31 |
## Usage (with SB3 RL Zoo) ๐
|
| 32 |
|
|
|
|
| 53 |
```
|
| 54 |
|
| 55 |
## Training (with the RL Zoo) ๐พ
|
| 56 |
+
The code segment provided is a set of commands used to train a DQN agent on the SpaceInvaders game environment, store the training logs, and then upload the trained model to a specific organization repository, potentially generating a video in the process.
|
| 57 |
```
|
| 58 |
python -m rl_zoo3.train --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/
|
| 59 |
# Upload the model and generate video (when possible)
|