Initial commit
Browse files- .gitattributes +1 -0
- README.md +74 -0
- args.yml +81 -0
- config.yml +25 -0
- env_kwargs.yml +1 -0
- ppo-BreakoutNoFrameskip-v4.zip +3 -0
- ppo-BreakoutNoFrameskip-v4/_stable_baselines3_version +1 -0
- ppo-BreakoutNoFrameskip-v4/data +0 -0
- ppo-BreakoutNoFrameskip-v4/policy.optimizer.pth +3 -0
- ppo-BreakoutNoFrameskip-v4/policy.pth +3 -0
- ppo-BreakoutNoFrameskip-v4/pytorch_variables.pth +3 -0
- ppo-BreakoutNoFrameskip-v4/system_info.txt +7 -0
- replay.mp4 +3 -0
- results.json +1 -0
- train_eval_metrics.zip +3 -0
.gitattributes
CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: stable-baselines3
|
3 |
+
tags:
|
4 |
+
- BreakoutNoFrameskip-v4
|
5 |
+
- deep-reinforcement-learning
|
6 |
+
- reinforcement-learning
|
7 |
+
- stable-baselines3
|
8 |
+
model-index:
|
9 |
+
- name: PPO
|
10 |
+
results:
|
11 |
+
- task:
|
12 |
+
type: reinforcement-learning
|
13 |
+
name: reinforcement-learning
|
14 |
+
dataset:
|
15 |
+
name: BreakoutNoFrameskip-v4
|
16 |
+
type: BreakoutNoFrameskip-v4
|
17 |
+
metrics:
|
18 |
+
- type: mean_reward
|
19 |
+
value: 19.10 +/- 4.83
|
20 |
+
name: mean_reward
|
21 |
+
verified: false
|
22 |
+
---
|
23 |
+
|
24 |
+
# **PPO** Agent playing **BreakoutNoFrameskip-v4**
|
25 |
+
This is a trained model of a **PPO** agent playing **BreakoutNoFrameskip-v4**
|
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 |
+
The RL Zoo is a training framework for Stable Baselines3
|
30 |
+
reinforcement learning agents,
|
31 |
+
with hyperparameter optimization and pre-trained agents included.
|
32 |
+
|
33 |
+
## Usage (with SB3 RL Zoo)
|
34 |
+
|
35 |
+
RL Zoo: https://github.com/DLR-RM/rl-baselines3-zoo<br/>
|
36 |
+
SB3: https://github.com/DLR-RM/stable-baselines3<br/>
|
37 |
+
SB3 Contrib: https://github.com/Stable-Baselines-Team/stable-baselines3-contrib
|
38 |
+
|
39 |
+
```
|
40 |
+
# Download model and save it into the logs/ folder
|
41 |
+
python -m rl_zoo3.load_from_hub --algo ppo --env BreakoutNoFrameskip-v4 -orga Arch4ngel -f logs/
|
42 |
+
python enjoy.py --algo ppo --env BreakoutNoFrameskip-v4 -f logs/
|
43 |
+
```
|
44 |
+
|
45 |
+
If you installed the RL Zoo3 via pip (`pip install rl_zoo3`), from anywhere you can do:
|
46 |
+
```
|
47 |
+
python -m rl_zoo3.load_from_hub --algo ppo --env BreakoutNoFrameskip-v4 -orga Arch4ngel -f logs/
|
48 |
+
rl_zoo3 enjoy --algo ppo --env BreakoutNoFrameskip-v4 -f logs/
|
49 |
+
```
|
50 |
+
|
51 |
+
## Training (with the RL Zoo)
|
52 |
+
```
|
53 |
+
python train.py --algo ppo --env BreakoutNoFrameskip-v4 -f logs/
|
54 |
+
# Upload the model and generate video (when possible)
|
55 |
+
python -m rl_zoo3.push_to_hub --algo ppo --env BreakoutNoFrameskip-v4 -f logs/ -orga Arch4ngel
|
56 |
+
```
|
57 |
+
|
58 |
+
## Hyperparameters
|
59 |
+
```python
|
60 |
+
OrderedDict([('batch_size', 256),
|
61 |
+
('clip_range', 'lin_0.1'),
|
62 |
+
('ent_coef', 0.01),
|
63 |
+
('env_wrapper',
|
64 |
+
['stable_baselines3.common.atari_wrappers.AtariWrapper']),
|
65 |
+
('frame_stack', 4),
|
66 |
+
('learning_rate', 'lin_2.5e-4'),
|
67 |
+
('n_envs', 8),
|
68 |
+
('n_epochs', 4),
|
69 |
+
('n_steps', 128),
|
70 |
+
('n_timesteps', 1000000.0),
|
71 |
+
('policy', 'CnnPolicy'),
|
72 |
+
('vf_coef', 0.5),
|
73 |
+
('normalize', False)])
|
74 |
+
```
|
args.yml
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
!!python/object/apply:collections.OrderedDict
|
2 |
+
- - - algo
|
3 |
+
- ppo
|
4 |
+
- - conf_file
|
5 |
+
- null
|
6 |
+
- - device
|
7 |
+
- auto
|
8 |
+
- - env
|
9 |
+
- BreakoutNoFrameskip-v4
|
10 |
+
- - env_kwargs
|
11 |
+
- null
|
12 |
+
- - eval_episodes
|
13 |
+
- 5
|
14 |
+
- - eval_freq
|
15 |
+
- 25000
|
16 |
+
- - gym_packages
|
17 |
+
- []
|
18 |
+
- - hyperparams
|
19 |
+
- null
|
20 |
+
- - log_folder
|
21 |
+
- logs/
|
22 |
+
- - log_interval
|
23 |
+
- -1
|
24 |
+
- - max_total_trials
|
25 |
+
- null
|
26 |
+
- - n_eval_envs
|
27 |
+
- 1
|
28 |
+
- - n_evaluations
|
29 |
+
- null
|
30 |
+
- - n_jobs
|
31 |
+
- 1
|
32 |
+
- - n_startup_trials
|
33 |
+
- 10
|
34 |
+
- - n_timesteps
|
35 |
+
- -1
|
36 |
+
- - n_trials
|
37 |
+
- 500
|
38 |
+
- - no_optim_plots
|
39 |
+
- false
|
40 |
+
- - num_threads
|
41 |
+
- -1
|
42 |
+
- - optimization_log_path
|
43 |
+
- null
|
44 |
+
- - optimize_hyperparameters
|
45 |
+
- false
|
46 |
+
- - progress
|
47 |
+
- false
|
48 |
+
- - pruner
|
49 |
+
- median
|
50 |
+
- - sampler
|
51 |
+
- tpe
|
52 |
+
- - save_freq
|
53 |
+
- -1
|
54 |
+
- - save_replay_buffer
|
55 |
+
- false
|
56 |
+
- - seed
|
57 |
+
- 347114235
|
58 |
+
- - storage
|
59 |
+
- null
|
60 |
+
- - study_name
|
61 |
+
- null
|
62 |
+
- - tensorboard_log
|
63 |
+
- ''
|
64 |
+
- - track
|
65 |
+
- false
|
66 |
+
- - trained_agent
|
67 |
+
- ''
|
68 |
+
- - truncate_last_trajectory
|
69 |
+
- true
|
70 |
+
- - uuid
|
71 |
+
- false
|
72 |
+
- - vec_env
|
73 |
+
- dummy
|
74 |
+
- - verbose
|
75 |
+
- 1
|
76 |
+
- - wandb_entity
|
77 |
+
- null
|
78 |
+
- - wandb_project_name
|
79 |
+
- sb3
|
80 |
+
- - yaml_file
|
81 |
+
- null
|
config.yml
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
!!python/object/apply:collections.OrderedDict
|
2 |
+
- - - batch_size
|
3 |
+
- 256
|
4 |
+
- - clip_range
|
5 |
+
- lin_0.1
|
6 |
+
- - ent_coef
|
7 |
+
- 0.01
|
8 |
+
- - env_wrapper
|
9 |
+
- - stable_baselines3.common.atari_wrappers.AtariWrapper
|
10 |
+
- - frame_stack
|
11 |
+
- 4
|
12 |
+
- - learning_rate
|
13 |
+
- lin_2.5e-4
|
14 |
+
- - n_envs
|
15 |
+
- 8
|
16 |
+
- - n_epochs
|
17 |
+
- 4
|
18 |
+
- - n_steps
|
19 |
+
- 128
|
20 |
+
- - n_timesteps
|
21 |
+
- 1000000.0
|
22 |
+
- - policy
|
23 |
+
- CnnPolicy
|
24 |
+
- - vf_coef
|
25 |
+
- 0.5
|
env_kwargs.yml
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{}
|
ppo-BreakoutNoFrameskip-v4.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f03db5adf95384d78c633e2c5de78a153752a77ecc4ce29c242f747ddfd2b7d0
|
3 |
+
size 20429562
|
ppo-BreakoutNoFrameskip-v4/_stable_baselines3_version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
1.6.2
|
ppo-BreakoutNoFrameskip-v4/data
ADDED
The diff for this file is too large to render.
See raw diff
|
|
ppo-BreakoutNoFrameskip-v4/policy.optimizer.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a865c16f9dde703a0d869d170d428e213ec842f49b5c9f655d2e62dd03921352
|
3 |
+
size 13503289
|
ppo-BreakoutNoFrameskip-v4/policy.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2db42e73431c2362a64d7f5af98e07fdfe13bed6a5b41f7b17fec42d8060b709
|
3 |
+
size 6750913
|
ppo-BreakoutNoFrameskip-v4/pytorch_variables.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d030ad8db708280fcae77d87e973102039acd23a11bdecc3db8eb6c0ac940ee1
|
3 |
+
size 431
|
ppo-BreakoutNoFrameskip-v4/system_info.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
OS: Linux-5.10.133+-x86_64-with-glibc2.27 #1 SMP Fri Aug 26 08:44:51 UTC 2022
|
2 |
+
Python: 3.8.16
|
3 |
+
Stable-Baselines3: 1.6.2
|
4 |
+
PyTorch: 1.13.0+cu116
|
5 |
+
GPU Enabled: True
|
6 |
+
Numpy: 1.21.6
|
7 |
+
Gym: 0.21.0
|
replay.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9730fc72e537126504e3276e72022239671ea3e39bf906928439f4b2151a4d2d
|
3 |
+
size 73131
|
results.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"mean_reward": 19.1, "std_reward": 4.825971404805461, "is_deterministic": false, "n_eval_episodes": 10, "eval_datetime": "2022-12-20T13:30:48.851919"}
|
train_eval_metrics.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b5eede0b5ed97c5e0dd1ffcf23abd4dc0c68ebd659c697041a50607c5576f159
|
3 |
+
size 53152
|