Initial commit
Browse files- .gitattributes +1 -0
- README.md +89 -0
- args.yml +81 -0
- config.yml +33 -0
- env_kwargs.yml +1 -0
- ppo-PongNoFrameskip-v4.zip +3 -0
- ppo-PongNoFrameskip-v4/_stable_baselines3_version +1 -0
- ppo-PongNoFrameskip-v4/data +0 -0
- ppo-PongNoFrameskip-v4/policy.optimizer.pth +3 -0
- ppo-PongNoFrameskip-v4/policy.pth +3 -0
- ppo-PongNoFrameskip-v4/pytorch_variables.pth +3 -0
- ppo-PongNoFrameskip-v4/system_info.txt +9 -0
- replay.mp4 +3 -0
- results.json +1 -0
- train_eval_metrics.zip +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: stable-baselines3
|
3 |
+
tags:
|
4 |
+
- PongNoFrameskip-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: PongNoFrameskip-v4
|
16 |
+
type: PongNoFrameskip-v4
|
17 |
+
metrics:
|
18 |
+
- type: mean_reward
|
19 |
+
value: -21.00 +/- 0.00
|
20 |
+
name: mean_reward
|
21 |
+
verified: false
|
22 |
+
---
|
23 |
+
|
24 |
+
# **PPO** Agent playing **PongNoFrameskip-v4**
|
25 |
+
This is a trained model of a **PPO** agent playing **PongNoFrameskip-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 |
+
Install the RL Zoo (with SB3 and SB3-Contrib):
|
40 |
+
```bash
|
41 |
+
pip install rl_zoo3
|
42 |
+
```
|
43 |
+
|
44 |
+
```
|
45 |
+
# Download model and save it into the logs/ folder
|
46 |
+
python -m rl_zoo3.load_from_hub --algo ppo --env PongNoFrameskip-v4 -orga hishamcse -f logs/
|
47 |
+
python -m rl_zoo3.enjoy --algo ppo --env PongNoFrameskip-v4 -f logs/
|
48 |
+
```
|
49 |
+
|
50 |
+
If you installed the RL Zoo3 via pip (`pip install rl_zoo3`), from anywhere you can do:
|
51 |
+
```
|
52 |
+
python -m rl_zoo3.load_from_hub --algo ppo --env PongNoFrameskip-v4 -orga hishamcse -f logs/
|
53 |
+
python -m rl_zoo3.enjoy --algo ppo --env PongNoFrameskip-v4 -f logs/
|
54 |
+
```
|
55 |
+
|
56 |
+
## Training (with the RL Zoo)
|
57 |
+
```
|
58 |
+
python -m rl_zoo3.train --algo ppo --env PongNoFrameskip-v4 -f logs/
|
59 |
+
# Upload the model and generate video (when possible)
|
60 |
+
python -m rl_zoo3.push_to_hub --algo ppo --env PongNoFrameskip-v4 -f logs/ -orga hishamcse
|
61 |
+
```
|
62 |
+
|
63 |
+
## Hyperparameters
|
64 |
+
```python
|
65 |
+
OrderedDict([('batch_size', 256),
|
66 |
+
('clip_range', 0.4),
|
67 |
+
('ent_coef', 1.6077823351479547e-08),
|
68 |
+
('env_wrapper',
|
69 |
+
['stable_baselines3.common.atari_wrappers.AtariWrapper']),
|
70 |
+
('frame_stack', 4),
|
71 |
+
('gae_lambda', 0.9342974216877361),
|
72 |
+
('gamma', 0.999),
|
73 |
+
('learning_rate', 0.009929843682975054),
|
74 |
+
('n_envs', 8),
|
75 |
+
('n_epochs', 9),
|
76 |
+
('n_steps', 128),
|
77 |
+
('n_timesteps', 5000000.0),
|
78 |
+
('normalize', False),
|
79 |
+
('policy', 'CnnPolicy'),
|
80 |
+
('policy_kwargs',
|
81 |
+
'dict(net_arch=[dict(pi=[64, 64], vf=[64, '
|
82 |
+
'64]),],activation_fn=nn.Tanh)'),
|
83 |
+
('vf_coef', 0.7945615838365445)])
|
84 |
+
```
|
85 |
+
|
86 |
+
# Environment Arguments
|
87 |
+
```python
|
88 |
+
{'render_mode': 'rgb_array'}
|
89 |
+
```
|
args.yml
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
!!python/object/apply:collections.OrderedDict
|
2 |
+
- - - algo
|
3 |
+
- ppo
|
4 |
+
- - conf_file
|
5 |
+
- ppo.yml
|
6 |
+
- - device
|
7 |
+
- auto
|
8 |
+
- - env
|
9 |
+
- PongNoFrameskip-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 |
+
- 3607532832
|
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 |
+
- - wandb_tags
|
81 |
+
- []
|
config.yml
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
!!python/object/apply:collections.OrderedDict
|
2 |
+
- - - batch_size
|
3 |
+
- 256
|
4 |
+
- - clip_range
|
5 |
+
- 0.4
|
6 |
+
- - ent_coef
|
7 |
+
- 1.6077823351479547e-08
|
8 |
+
- - env_wrapper
|
9 |
+
- - stable_baselines3.common.atari_wrappers.AtariWrapper
|
10 |
+
- - frame_stack
|
11 |
+
- 4
|
12 |
+
- - gae_lambda
|
13 |
+
- 0.9342974216877361
|
14 |
+
- - gamma
|
15 |
+
- 0.999
|
16 |
+
- - learning_rate
|
17 |
+
- 0.009929843682975054
|
18 |
+
- - n_envs
|
19 |
+
- 8
|
20 |
+
- - n_epochs
|
21 |
+
- 9
|
22 |
+
- - n_steps
|
23 |
+
- 128
|
24 |
+
- - n_timesteps
|
25 |
+
- 5000000.0
|
26 |
+
- - normalize
|
27 |
+
- false
|
28 |
+
- - policy
|
29 |
+
- CnnPolicy
|
30 |
+
- - policy_kwargs
|
31 |
+
- dict(net_arch=[dict(pi=[64, 64], vf=[64, 64]),],activation_fn=nn.Tanh)
|
32 |
+
- - vf_coef
|
33 |
+
- 0.7945615838365445
|
env_kwargs.yml
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
render_mode: rgb_array
|
ppo-PongNoFrameskip-v4.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4dc4d7ec8496a44372be1f8023d8fbc5b347339bfe751116941b261c48860743
|
3 |
+
size 21303123
|
ppo-PongNoFrameskip-v4/_stable_baselines3_version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
2.3.2
|
ppo-PongNoFrameskip-v4/data
ADDED
The diff for this file is too large to render.
See raw diff
|
|
ppo-PongNoFrameskip-v4/policy.optimizer.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f0175b27ecd683ea4388fdd3be684c13e861332ea1ec4ff7424d623ba0d6f6ed
|
3 |
+
size 14085346
|
ppo-PongNoFrameskip-v4/policy.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5277ae3a4364a4f8b48de0abe0ab64e93327622e919daaa6b7613e1c3d19f83a
|
3 |
+
size 7044698
|
ppo-PongNoFrameskip-v4/pytorch_variables.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0c35cea3b2e60fb5e7e162d3592df775cd400e575a31c72f359fb9e654ab00c5
|
3 |
+
size 864
|
ppo-PongNoFrameskip-v4/system_info.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
- OS: Linux-5.15.133+-x86_64-with-glibc2.31 # 1 SMP Tue Dec 19 13:14:11 UTC 2023
|
2 |
+
- Python: 3.10.13
|
3 |
+
- Stable-Baselines3: 2.3.2
|
4 |
+
- PyTorch: 2.1.2
|
5 |
+
- GPU Enabled: True
|
6 |
+
- Numpy: 1.26.4
|
7 |
+
- Cloudpickle: 3.0.0
|
8 |
+
- Gymnasium: 0.29.0
|
9 |
+
- OpenAI Gym: 0.26.2
|
replay.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:53947da4050e7a0021804d7be4a778a52cfe07267d7d17e131e8a0d7c33eb6ae
|
3 |
+
size 48922
|
results.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"mean_reward": -21.0, "std_reward": 0.0, "is_deterministic": false, "n_eval_episodes": 10, "eval_datetime": "2024-06-15T13:23:09.103295"}
|
train_eval_metrics.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0d2c41779906768f9bd8955147134f1ae8c54772970b733a3fe395725e0ca774
|
3 |
+
size 15028
|