Emperor-WS commited on
Commit
7ce1f16
1 Parent(s): 544013b

Initial commit

Browse files
.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,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: stable-baselines3
3
+ tags:
4
+ - CarRacing-v2
5
+ - deep-reinforcement-learning
6
+ - reinforcement-learning
7
+ - stable-baselines3
8
+ model-index:
9
+ - name: RecurrentPPO
10
+ results:
11
+ - task:
12
+ type: reinforcement-learning
13
+ name: reinforcement-learning
14
+ dataset:
15
+ name: CarRacing-v2
16
+ type: CarRacing-v2
17
+ metrics:
18
+ - type: mean_reward
19
+ value: 358.08 +/- 197.12
20
+ name: mean_reward
21
+ verified: false
22
+ ---
23
+
24
+ # **RecurrentPPO** Agent playing **CarRacing-v2**
25
+ This is a trained model of a **RecurrentPPO** agent playing **CarRacing-v2**
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_lstm --env CarRacing-v2 -orga Emperor-WS -f logs/
47
+ python -m rl_zoo3.enjoy --algo ppo_lstm --env CarRacing-v2 -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_lstm --env CarRacing-v2 -orga Emperor-WS -f logs/
53
+ python -m rl_zoo3.enjoy --algo ppo_lstm --env CarRacing-v2 -f logs/
54
+ ```
55
+
56
+ ## Training (with the RL Zoo)
57
+ ```
58
+ python -m rl_zoo3.train --algo ppo_lstm --env CarRacing-v2 -f logs/
59
+ # Upload the model and generate video (when possible)
60
+ python -m rl_zoo3.push_to_hub --algo ppo_lstm --env CarRacing-v2 -f logs/ -orga Emperor-WS
61
+ ```
62
+
63
+ ## Hyperparameters
64
+ ```python
65
+ OrderedDict([('batch_size', 128),
66
+ ('clip_range', 0.2),
67
+ ('ent_coef', 0.0),
68
+ ('env_wrapper',
69
+ [{'gymnasium.wrappers.resize_observation.ResizeObservation': {'shape': 64}},
70
+ {'gymnasium.wrappers.gray_scale_observation.GrayScaleObservation': {'keep_dim': True}}]),
71
+ ('frame_stack', 2),
72
+ ('gae_lambda', 0.95),
73
+ ('gamma', 0.99),
74
+ ('learning_rate', 'lin_1e-4'),
75
+ ('max_grad_norm', 0.5),
76
+ ('n_envs', 8),
77
+ ('n_epochs', 4),
78
+ ('n_steps', 512),
79
+ ('n_timesteps', 4000000.0),
80
+ ('normalize', "{'norm_obs': False, 'norm_reward': True}"),
81
+ ('policy', 'CnnLstmPolicy'),
82
+ ('policy_kwargs',
83
+ 'dict(log_std_init=-2, ortho_init=False, '
84
+ 'enable_critic_lstm=False, activation_fn=nn.GELU, '
85
+ 'lstm_hidden_size=128, )'),
86
+ ('sde_sample_freq', 4),
87
+ ('use_sde', True),
88
+ ('vf_coef', 0.5),
89
+ ('normalize_kwargs', {'norm_obs': False, 'norm_reward': False})])
90
+ ```
91
+
92
+ # Environment Arguments
93
+ ```python
94
+ {'render_mode': 'rgb_array'}
95
+ ```
args.yml ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object/apply:collections.OrderedDict
2
+ - - - algo
3
+ - ppo_lstm
4
+ - - conf_file
5
+ - null
6
+ - - device
7
+ - auto
8
+ - - env
9
+ - CarRacing-v2
10
+ - - env_kwargs
11
+ - null
12
+ - - eval_env_kwargs
13
+ - null
14
+ - - eval_episodes
15
+ - 5
16
+ - - eval_freq
17
+ - 25000
18
+ - - gym_packages
19
+ - []
20
+ - - hyperparams
21
+ - n_epochs: 4
22
+ - - log_folder
23
+ - logs/
24
+ - - log_interval
25
+ - -1
26
+ - - max_total_trials
27
+ - null
28
+ - - n_eval_envs
29
+ - 1
30
+ - - n_evaluations
31
+ - null
32
+ - - n_jobs
33
+ - 1
34
+ - - n_startup_trials
35
+ - 10
36
+ - - n_timesteps
37
+ - 500000
38
+ - - n_trials
39
+ - 500
40
+ - - no_optim_plots
41
+ - false
42
+ - - num_threads
43
+ - -1
44
+ - - optimization_log_path
45
+ - null
46
+ - - optimize_hyperparameters
47
+ - false
48
+ - - progress
49
+ - false
50
+ - - pruner
51
+ - median
52
+ - - sampler
53
+ - tpe
54
+ - - save_freq
55
+ - -1
56
+ - - save_replay_buffer
57
+ - false
58
+ - - seed
59
+ - 1258192766
60
+ - - storage
61
+ - null
62
+ - - study_name
63
+ - null
64
+ - - tensorboard_log
65
+ - ''
66
+ - - track
67
+ - false
68
+ - - trained_agent
69
+ - ''
70
+ - - truncate_last_trajectory
71
+ - true
72
+ - - uuid
73
+ - false
74
+ - - vec_env
75
+ - dummy
76
+ - - verbose
77
+ - 1
78
+ - - wandb_entity
79
+ - null
80
+ - - wandb_project_name
81
+ - sb3
82
+ - - wandb_tags
83
+ - []
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
+ - - gymnasium.wrappers.resize_observation.ResizeObservation:
10
+ shape: 64
11
+ - gymnasium.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
+ - 4
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
+ render_mode: rgb_array
ppo_lstm-CarRacing-v2.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a784310e398689139ad5b0923c2b9278d43a5f551efadbd1e0770dcfcd56126
3
+ size 12063217
ppo_lstm-CarRacing-v2/_stable_baselines3_version ADDED
@@ -0,0 +1 @@
 
 
1
+ 2.3.0a2
ppo_lstm-CarRacing-v2/data ADDED
The diff for this file is too large to render. See raw diff
 
ppo_lstm-CarRacing-v2/policy.optimizer.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ece6a1f7f4c50cf83366a4b438d10421371759290ea777c49ba34929f0410d6
3
+ size 7967659
ppo_lstm-CarRacing-v2/policy.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d22543fbd58513a956043cfdb710e63b45712d3fea019163b104fa55988d9d6c
3
+ size 3984870
ppo_lstm-CarRacing-v2/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_lstm-CarRacing-v2/system_info.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ - OS: Linux-6.1.58+-x86_64-with-glibc2.35 # 1 SMP PREEMPT_DYNAMIC Sat Nov 18 15:31:17 UTC 2023
2
+ - Python: 3.10.12
3
+ - Stable-Baselines3: 2.3.0a2
4
+ - PyTorch: 2.1.0+cu121
5
+ - GPU Enabled: True
6
+ - Numpy: 1.25.2
7
+ - Cloudpickle: 2.2.1
8
+ - Gymnasium: 0.29.1
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:867fd46b9da865c9799bccd4e072afe40951914e94a938770de14f4875c2eaa0
3
+ size 798284
results.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"mean_reward": 358.079023, "std_reward": 197.11957502963637, "is_deterministic": true, "n_eval_episodes": 10, "eval_datetime": "2024-02-25T16:58:41.019049"}
train_eval_metrics.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9ef7bac858c99b3208fc54ca6b3356a4d259ff091026d4ffb660dfcc6334f63
3
+ size 18303
vec_normalize.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdea0400a234b350c2eb0d8011939e0c62d691d184402a2d84fa9393f98914b5
3
+ size 50766