xaeroq commited on
Commit
70d1a75
·
1 Parent(s): 03b6e80

Initial commit

Browse files
.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
+ - ALE/MsPacman-v5
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: ALE/MsPacman-v5
16
+ type: ALE/MsPacman-v5
17
+ metrics:
18
+ - type: mean_reward
19
+ value: 600.00 +/- 273.20
20
+ name: mean_reward
21
+ verified: false
22
+ ---
23
+
24
+ # **PPO** Agent playing **ALE/MsPacman-v5**
25
+ This is a trained model of a **PPO** agent playing **ALE/MsPacman-v5**
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 ALE/MsPacman-v5 -orga xaeroq -f logs/
42
+ python enjoy.py --algo ppo --env ALE/MsPacman-v5 -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 ALE/MsPacman-v5 -orga xaeroq -f logs/
48
+ rl_zoo3 enjoy --algo ppo --env ALE/MsPacman-v5 -f logs/
49
+ ```
50
+
51
+ ## Training (with the RL Zoo)
52
+ ```
53
+ python train.py --algo ppo --env ALE/MsPacman-v5 -f logs/
54
+ # Upload the model and generate video (when possible)
55
+ python -m rl_zoo3.push_to_hub --algo ppo --env ALE/MsPacman-v5 -f logs/ -orga xaeroq
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', 100000.0),
71
+ ('policy', 'CnnPolicy'),
72
+ ('vf_coef', 0.5),
73
+ ('normalize', False)])
74
+ ```
args.yml ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object/apply:collections.OrderedDict
2
+ - - - algo
3
+ - ppo
4
+ - - device
5
+ - auto
6
+ - - env
7
+ - ALE/MsPacman-v5
8
+ - - env_kwargs
9
+ - null
10
+ - - eval_episodes
11
+ - 5
12
+ - - eval_freq
13
+ - 25000
14
+ - - gym_packages
15
+ - []
16
+ - - hyperparams
17
+ - null
18
+ - - log_folder
19
+ - logs/
20
+ - - log_interval
21
+ - -1
22
+ - - max_total_trials
23
+ - null
24
+ - - n_eval_envs
25
+ - 1
26
+ - - n_evaluations
27
+ - null
28
+ - - n_jobs
29
+ - 1
30
+ - - n_startup_trials
31
+ - 10
32
+ - - n_timesteps
33
+ - -1
34
+ - - n_trials
35
+ - 500
36
+ - - no_optim_plots
37
+ - false
38
+ - - num_threads
39
+ - -1
40
+ - - optimization_log_path
41
+ - null
42
+ - - optimize_hyperparameters
43
+ - false
44
+ - - progress
45
+ - false
46
+ - - pruner
47
+ - median
48
+ - - sampler
49
+ - tpe
50
+ - - save_freq
51
+ - -1
52
+ - - save_replay_buffer
53
+ - false
54
+ - - seed
55
+ - 1957088056
56
+ - - storage
57
+ - null
58
+ - - study_name
59
+ - null
60
+ - - tensorboard_log
61
+ - ''
62
+ - - track
63
+ - false
64
+ - - trained_agent
65
+ - ''
66
+ - - truncate_last_trajectory
67
+ - true
68
+ - - uuid
69
+ - false
70
+ - - vec_env
71
+ - dummy
72
+ - - verbose
73
+ - 1
74
+ - - wandb_entity
75
+ - null
76
+ - - wandb_project_name
77
+ - sb3
78
+ - - yaml_file
79
+ - 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
+ - 100000.0
22
+ - - policy
23
+ - CnnPolicy
24
+ - - vf_coef
25
+ - 0.5
env_kwargs.yml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
ppo-ALE-MsPacman-v5.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:963460d73a3808a1b9392f215084a36475dc2c64f8a9a0956dbc06ac0e04bbd6
3
+ size 20460412
ppo-ALE-MsPacman-v5/_stable_baselines3_version ADDED
@@ -0,0 +1 @@
 
 
1
+ 1.6.2
ppo-ALE-MsPacman-v5/data ADDED
The diff for this file is too large to render. See raw diff
 
ppo-ALE-MsPacman-v5/policy.optimizer.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aaa38a624806115921bb6154e31ccc602cfbe7f24edb044dbae96ccb2de8e425
3
+ size 13523769
ppo-ALE-MsPacman-v5/policy.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24363ec453853613689e8bb58d407a45e6ee6060d7d40c163eab1e44ec0f27a4
3
+ size 6761153
ppo-ALE-MsPacman-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
ppo-ALE-MsPacman-v5/system_info.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ OS: Linux-5.10.133+-x86_64-with-Ubuntu-18.04-bionic #1 SMP Fri Aug 26 08:44:51 UTC 2022
2
+ Python: 3.7.15
3
+ Stable-Baselines3: 1.6.2
4
+ PyTorch: 1.12.1+cu113
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:b813f1446d56d84b233e9d30f53c234a4b05a5a2879b84fcdcab874617638fb7
3
+ size 296608
results.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"mean_reward": 600.0, "std_reward": 273.20322106446696, "is_deterministic": false, "n_eval_episodes": 10, "eval_datetime": "2022-11-24T00:53:39.799849"}
train_eval_metrics.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d66542c2255a2b66e4d269824d379a050be792598cbbfa340af33cb0537944a5
3
+ size 17914