Update README.md
Browse files
README.md
CHANGED
|
@@ -26,4 +26,18 @@ model-index:
|
|
| 26 |
# **A3C with ICM** Agent playing **ALE/KungFuMaster-v5**
|
| 27 |
This is a trained model of a **A3C-ICM** agent playing **ALE/KungFuMaster-v5** .
|
| 28 |
To learn to use this model and train yours check this notebook on kaggle: https://www.kaggle.com/code/syedjarullahhisham/drl-extra-personal-adv-drl-a3c-icm-kungfu-master
|
| 29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
# **A3C with ICM** Agent playing **ALE/KungFuMaster-v5**
|
| 27 |
This is a trained model of a **A3C-ICM** agent playing **ALE/KungFuMaster-v5** .
|
| 28 |
To learn to use this model and train yours check this notebook on kaggle: https://www.kaggle.com/code/syedjarullahhisham/drl-extra-personal-adv-drl-a3c-icm-kungfu-master
|
| 29 |
+
|
| 30 |
+
# Hyperparameters
|
| 31 |
+
|
| 32 |
+
```
|
| 33 |
+
"envid": "ALE/KungFuMaster-v5",
|
| 34 |
+
"learningrate": 0.0002,
|
| 35 |
+
"tau": 1.0,
|
| 36 |
+
"num_local_step": 50,
|
| 37 |
+
"num_global_step": 380000,
|
| 38 |
+
"gamma": 0.99,
|
| 39 |
+
"lambda": 0.1,
|
| 40 |
+
"eta": 0.2,
|
| 41 |
+
"beta": 0.2,
|
| 42 |
+
"max_actions": 500
|
| 43 |
+
```
|