Commit
·
47eb505
1
Parent(s):
317afe5
1st try at CNN-PPO SpaceInvaders
Browse files- .gitattributes +1 -0
- README.md +28 -0
- cnn-ppo-SpaceInvaders-v5.zip +3 -0
- cnn-ppo-SpaceInvaders-v5/_stable_baselines3_version +1 -0
- cnn-ppo-SpaceInvaders-v5/data +0 -0
- cnn-ppo-SpaceInvaders-v5/policy.optimizer.pth +3 -0
- cnn-ppo-SpaceInvaders-v5/policy.pth +3 -0
- cnn-ppo-SpaceInvaders-v5/pytorch_variables.pth +3 -0
- cnn-ppo-SpaceInvaders-v5/system_info.txt +7 -0
- config.json +0 -0
- results.json +1 -0
.gitattributes
CHANGED
@@ -25,3 +25,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
28 |
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: stable-baselines3
|
3 |
+
tags:
|
4 |
+
- ALE/SpaceInvaders-v5
|
5 |
+
- deep-reinforcement-learning
|
6 |
+
- reinforcement-learning
|
7 |
+
- stable-baselines3
|
8 |
+
model-index:
|
9 |
+
- name: CNN-PPO
|
10 |
+
results:
|
11 |
+
- metrics:
|
12 |
+
- type: mean_reward
|
13 |
+
value: 143.50 +/- 73.04
|
14 |
+
name: mean_reward
|
15 |
+
task:
|
16 |
+
type: reinforcement-learning
|
17 |
+
name: reinforcement-learning
|
18 |
+
dataset:
|
19 |
+
name: ALE/SpaceInvaders-v5
|
20 |
+
type: ALE/SpaceInvaders-v5
|
21 |
+
---
|
22 |
+
|
23 |
+
# **CNN-PPO** Agent playing **ALE/SpaceInvaders-v5**
|
24 |
+
This is a trained model of a **CNN-PPO** agent playing **ALE/SpaceInvaders-v5** using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
|
25 |
+
|
26 |
+
## Usage (with Stable-baselines3)
|
27 |
+
TODO: Add your code
|
28 |
+
|
cnn-ppo-SpaceInvaders-v5.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c32b76e2f883fafa07095b749eb8b5e70120ac4041635b60191f4d147fe9e9b9
|
3 |
+
size 141015288
|
cnn-ppo-SpaceInvaders-v5/_stable_baselines3_version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
1.5.0
|
cnn-ppo-SpaceInvaders-v5/data
ADDED
The diff for this file is too large to render.
See raw diff
|
|
cnn-ppo-SpaceInvaders-v5/policy.optimizer.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc48122acc16b70d2ee7db0ad78f23e7b629ed67202051e74ef260bb6523e0db
|
3 |
+
size 92921565
|
cnn-ppo-SpaceInvaders-v5/policy.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:96174dc84bef310164e5d7be11f089338e1e2519962bfe592608bc395a76ff11
|
3 |
+
size 46461633
|
cnn-ppo-SpaceInvaders-v5/pytorch_variables.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d030ad8db708280fcae77d87e973102039acd23a11bdecc3db8eb6c0ac940ee1
|
3 |
+
size 431
|
cnn-ppo-SpaceInvaders-v5/system_info.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
OS: Linux-5.4.0-109-generic-x86_64-with-glibc2.27 #123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022
|
2 |
+
Python: 3.9.12
|
3 |
+
Stable-Baselines3: 1.5.0
|
4 |
+
PyTorch: 1.11.0
|
5 |
+
GPU Enabled: True
|
6 |
+
Numpy: 1.22.3
|
7 |
+
Gym: 0.21.0
|
config.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
results.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"mean_reward": 143.5, "std_reward": 73.04279567486448, "is_deterministic": false, "n_eval_episodes": 10, "eval_datetime": "2022-05-17T23:04:09.680275"}
|