Update README.md
Browse files
README.md
CHANGED
@@ -23,21 +23,31 @@ model-index:
|
|
23 |
verified: false
|
24 |
---
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
verified: false
|
24 |
---
|
25 |
|
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 |
+
|
29 |
+
|
30 |
+
## Codes
|
31 |
+
|
32 |
+
Github repos(Give a star if found useful):
|
33 |
+
* https://github.com/hishamcse/Advanced-DRL-Renegades-Game-Bots
|
34 |
+
* https://github.com/hishamcse/DRL-Renegades-Game-Bots
|
35 |
+
|
36 |
+
Kaggle Notebook:
|
37 |
+
* https://www.kaggle.com/code/syedjarullahhisham/drl-extra-personal-adv-drl-a3c-icm-kungfu-master
|
38 |
+
|
39 |
+
|
40 |
+
# Hyperparameters
|
41 |
+
|
42 |
+
```
|
43 |
+
"envid": "ALE/KungFuMaster-v5",
|
44 |
+
"learningrate": 0.0002,
|
45 |
+
"tau": 1.0,
|
46 |
+
"num_local_step": 50,
|
47 |
+
"num_global_step": 380000,
|
48 |
+
"gamma": 0.99,
|
49 |
+
"lambda": 0.1,
|
50 |
+
"eta": 0.2,
|
51 |
+
"beta": 0.2,
|
52 |
+
"max_actions": 500
|
53 |
+
```
|