araffin commited on
Commit
6cf28c2
1 Parent(s): 0473c68

Initial Commit

Browse files
.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,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: stable-baselines3
3
+ tags:
4
+ - CarRacing-v0
5
+ - deep-reinforcement-learning
6
+ - reinforcement-learning
7
+ - stable-baselines3
8
+ model-index:
9
+ - name: RecurrentPPO
10
+ results:
11
+ - metrics:
12
+ - type: mean_reward
13
+ value: 880.39 +/- 31.90
14
+ name: mean_reward
15
+ task:
16
+ type: reinforcement-learning
17
+ name: reinforcement-learning
18
+ dataset:
19
+ name: CarRacing-v0
20
+ type: CarRacing-v0
21
+ ---
22
+
23
+ # **RecurrentPPO** Agent playing **CarRacing-v0**
24
+ This is a trained model of a **RecurrentPPO** agent playing **CarRacing-v0**
25
+ using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3)
26
+ and the [RL Zoo](https://github.com/DLR-RM/rl-baselines3-zoo).
27
+
28
+ The RL Zoo is a training framework for Stable Baselines3
29
+ reinforcement learning agents,
30
+ with hyperparameter optimization and pre-trained agents included.
31
+
32
+ ## Usage (with SB3 RL Zoo)
33
+
34
+ RL Zoo: https://github.com/DLR-RM/rl-baselines3-zoo<br/>
35
+ SB3: https://github.com/DLR-RM/stable-baselines3<br/>
36
+ SB3 Contrib: https://github.com/Stable-Baselines-Team/stable-baselines3-contrib
37
+
38
+ ```
39
+ # Download model and save it into the logs/ folder
40
+ python -m utils.load_from_hub --algo ppo_lstm --env CarRacing-v0 -orga sb3 -f logs/
41
+ python enjoy.py --algo ppo_lstm --env CarRacing-v0 -f logs/
42
+ ```
43
+
44
+ ## Training (with the RL Zoo)
45
+ ```
46
+ python train.py --algo ppo_lstm --env CarRacing-v0 -f logs/
47
+ # Upload the model and generate video (when possible)
48
+ python -m utils.push_to_hub --algo ppo_lstm --env CarRacing-v0 -f logs/ -orga sb3
49
+ ```
50
+
51
+ ## Hyperparameters
52
+ ```python
53
+ OrderedDict([('batch_size', 128),
54
+ ('clip_range', 0.2),
55
+ ('ent_coef', 0.0),
56
+ ('env_wrapper',
57
+ [{'gym.wrappers.resize_observation.ResizeObservation': {'shape': 64}},
58
+ {'gym.wrappers.gray_scale_observation.GrayScaleObservation': {'keep_dim': True}}]),
59
+ ('frame_stack', 2),
60
+ ('gae_lambda', 0.95),
61
+ ('gamma', 0.99),
62
+ ('learning_rate', 'lin_1e-4'),
63
+ ('max_grad_norm', 0.5),
64
+ ('n_envs', 8),
65
+ ('n_epochs', 10),
66
+ ('n_steps', 512),
67
+ ('n_timesteps', 4000000.0),
68
+ ('normalize', "{'norm_obs': False, 'norm_reward': True}"),
69
+ ('policy', 'CnnLstmPolicy'),
70
+ ('policy_kwargs',
71
+ 'dict(log_std_init=-2, ortho_init=False, '
72
+ 'enable_critic_lstm=False, activation_fn=nn.GELU, '
73
+ 'lstm_hidden_size=128, )'),
74
+ ('sde_sample_freq', 4),
75
+ ('use_sde', True),
76
+ ('vf_coef', 0.5),
77
+ ('normalize_kwargs', {'norm_obs': False, 'norm_reward': False})])
78
+ ```
79
+
80
+ # Environment Arguments
81
+ ```python
82
+ {'verbose': 0}
83
+ ```
args.yml ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object/apply:collections.OrderedDict
2
+ - - - algo
3
+ - ppo_lstm
4
+ - - device
5
+ - auto
6
+ - - env
7
+ - CarRacing-v0
8
+ - - env_kwargs
9
+ - verbose: 0
10
+ - - eval_episodes
11
+ - 20
12
+ - - eval_freq
13
+ - 50000
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
+ - 5
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
+ - - pruner
45
+ - median
46
+ - - sampler
47
+ - tpe
48
+ - - save_freq
49
+ - -1
50
+ - - save_replay_buffer
51
+ - false
52
+ - - seed
53
+ - 4020884719
54
+ - - storage
55
+ - null
56
+ - - study_name
57
+ - null
58
+ - - tensorboard_log
59
+ - runs/CarRacing-v0__ppo_lstm__4020884719__1654091770
60
+ - - track
61
+ - true
62
+ - - trained_agent
63
+ - ''
64
+ - - truncate_last_trajectory
65
+ - true
66
+ - - uuid
67
+ - false
68
+ - - vec_env
69
+ - subproc
70
+ - - verbose
71
+ - 1
72
+ - - wandb_entity
73
+ - openrlbenchmark
74
+ - - wandb_project_name
75
+ - sb3
config.yml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object/apply:collections.OrderedDict
2
+ - - - batch_size
3
+ - 128
4
+ - - clip_range
5
+ - 0.2
6
+ - - ent_coef
7
+ - 0.0
8
+ - - env_wrapper
9
+ - - gym.wrappers.resize_observation.ResizeObservation:
10
+ shape: 64
11
+ - gym.wrappers.gray_scale_observation.GrayScaleObservation:
12
+ keep_dim: true
13
+ - - frame_stack
14
+ - 2
15
+ - - gae_lambda
16
+ - 0.95
17
+ - - gamma
18
+ - 0.99
19
+ - - learning_rate
20
+ - lin_1e-4
21
+ - - max_grad_norm
22
+ - 0.5
23
+ - - n_envs
24
+ - 8
25
+ - - n_epochs
26
+ - 10
27
+ - - n_steps
28
+ - 512
29
+ - - n_timesteps
30
+ - 4000000.0
31
+ - - normalize
32
+ - '{''norm_obs'': False, ''norm_reward'': True}'
33
+ - - policy
34
+ - CnnLstmPolicy
35
+ - - policy_kwargs
36
+ - dict(log_std_init=-2, ortho_init=False, enable_critic_lstm=False, activation_fn=nn.GELU,
37
+ lstm_hidden_size=128, )
38
+ - - sde_sample_freq
39
+ - 4
40
+ - - use_sde
41
+ - true
42
+ - - vf_coef
43
+ - 0.5
env_kwargs.yml ADDED
@@ -0,0 +1 @@
 
 
1
+ verbose: 0
ppo_lstm-CarRacing-v0.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d3141843cb4b813dc9deba8949b3075b4881a983669d8a2cc38b168c9f6efe2
3
+ size 12079576
ppo_lstm-CarRacing-v0/_stable_baselines3_version ADDED
@@ -0,0 +1 @@
 
 
1
+ 1.5.1a8
ppo_lstm-CarRacing-v0/data ADDED
The diff for this file is too large to render. See raw diff
 
ppo_lstm-CarRacing-v0/policy.optimizer.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f0362958d26257e5fa13f0762a34f9feb0cca427539339cf1a02f042468070d
3
+ size 7962099
ppo_lstm-CarRacing-v0/policy.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b73e146fd2a552e8ab82f0e5560802311fb242e87a81013d2cb77cf7190df97
3
+ size 3981301
ppo_lstm-CarRacing-v0/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_lstm-CarRacing-v0/system_info.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ OS: Linux-5.13.0-41-generic-x86_64-with-debian-bullseye-sid #46~20.04.1-Ubuntu SMP Wed Apr 20 13:16:21 UTC 2022
2
+ Python: 3.7.10
3
+ Stable-Baselines3: 1.5.1a8
4
+ PyTorch: 1.11.0
5
+ GPU Enabled: True
6
+ Numpy: 1.21.2
7
+ Gym: 0.21.0
replay.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:284a6fc21ccdd07b3b2e5f44fb18ac0e5033fc9bc5ceb92ccf519f5e21fba4d3
3
+ size 882405
results.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"mean_reward": 880.3853001, "std_reward": 31.89815510016426, "is_deterministic": true, "n_eval_episodes": 10, "eval_datetime": "2022-06-01T19:27:08.325774"}
train_eval_metrics.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79ac357a05bfd0313659d9a296a755fc52db1bb2ce51b2395df501ec9eb6bcb5
3
+ size 143392
vec_normalize.pkl ADDED
Binary file (53.4 kB). View file