Updated: README.md
Browse files
README.md
CHANGED
@@ -3,11 +3,32 @@ license: mit
|
|
3 |
language:
|
4 |
- en
|
5 |
tags:
|
6 |
-
-
|
7 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
---
|
9 |
|
10 |
-
# Deep Q-Learning based Agent for Atari Breakout
|
11 |
|
12 |
The agent showcased in this space is trained using the Deep Q-Learning algorithm.
|
13 |
The agent was trained for $3500$ episodes with a learning rate of $0.00001$ and an epsilon value that decreased linearly over time.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
language:
|
4 |
- en
|
5 |
tags:
|
6 |
+
- Atari-Breakout-v0
|
7 |
+
- deep-reinforcement-learning
|
8 |
+
- reinforcement-learning
|
9 |
+
model-index:
|
10 |
+
- name: Deep Q Learning
|
11 |
+
results:
|
12 |
+
- task:
|
13 |
+
type: reinforcement-learning
|
14 |
+
name: reinforcement-learning
|
15 |
+
dataset:
|
16 |
+
name: Atari-Breakout-v0
|
17 |
+
type: Atari-Breakout-v0
|
18 |
+
metrics:
|
19 |
+
- type: mean_reward
|
20 |
+
value: 29.00
|
21 |
+
name: mean_reward
|
22 |
+
verified: false
|
23 |
---
|
24 |
|
25 |
+
# **Deep Q-Learning based Agent for Atari Breakout**
|
26 |
|
27 |
The agent showcased in this space is trained using the Deep Q-Learning algorithm.
|
28 |
The agent was trained for $3500$ episodes with a learning rate of $0.00001$ and an epsilon value that decreased linearly over time.
|
29 |
+
|
30 |
+
## Usage
|
31 |
+
|
32 |
+
```bash
|
33 |
+
python main.py --model_folder <Name of the folder> --model_name <Name of the model> --save_video 1 --video_name <Name of the video file>
|
34 |
+
```
|