skyline22 commited on
Commit
ab4fc7b
1 Parent(s): 4d6786b

Initial commit

Browse files
README.md CHANGED
@@ -1,36 +1,69 @@
1
  ---
2
  library_name: stable-baselines3
3
  tags:
4
- - LunarLander-v2
5
  - deep-reinforcement-learning
6
  - reinforcement-learning
7
  - stable-baselines3
8
  model-index:
9
- - name: PPO
10
  results:
11
  - metrics:
12
  - type: mean_reward
13
- value: -537.76 +/- 108.41
14
  name: mean_reward
15
  task:
16
  type: reinforcement-learning
17
  name: reinforcement-learning
18
  dataset:
19
- name: LunarLander-v2
20
- type: LunarLander-v2
21
  ---
22
 
23
- # **PPO** Agent playing **LunarLander-v2**
24
- This is a trained model of a **PPO** agent playing **LunarLander-v2**
25
- using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
 
26
 
27
- ## Usage (with Stable-baselines3)
28
- TODO: Add your code
 
29
 
 
30
 
31
- ```python
32
- from stable_baselines3 import ...
33
- from huggingface_sb3 import load_from_hub
 
 
 
 
 
 
34
 
35
- ...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ```
 
1
  ---
2
  library_name: stable-baselines3
3
  tags:
4
+ - SpaceInvadersNoFrameskip-v4
5
  - deep-reinforcement-learning
6
  - reinforcement-learning
7
  - stable-baselines3
8
  model-index:
9
+ - name: DQN
10
  results:
11
  - metrics:
12
  - type: mean_reward
13
+ value: 607.00 +/- 156.27
14
  name: mean_reward
15
  task:
16
  type: reinforcement-learning
17
  name: reinforcement-learning
18
  dataset:
19
+ name: SpaceInvadersNoFrameskip-v4
20
+ type: SpaceInvadersNoFrameskip-v4
21
  ---
22
 
23
+ # **DQN** Agent playing **SpaceInvadersNoFrameskip-v4**
24
+ This is a trained model of a **DQN** agent playing **SpaceInvadersNoFrameskip-v4**
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 dqn --env SpaceInvadersNoFrameskip-v4 -orga skyline22 -f logs/
41
+ python enjoy.py --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/
42
+ ```
43
 
44
+ ## Training (with the RL Zoo)
45
+ ```
46
+ python train.py --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/
47
+ # Upload the model and generate video (when possible)
48
+ python -m utils.push_to_hub --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/ -orga skyline22
49
+ ```
50
+
51
+ ## Hyperparameters
52
+ ```python
53
+ OrderedDict([('batch_size', 32),
54
+ ('buffer_size', 100000),
55
+ ('env_wrapper',
56
+ ['stable_baselines3.common.atari_wrappers.AtariWrapper']),
57
+ ('exploration_final_eps', 0.01),
58
+ ('exploration_fraction', 0.1),
59
+ ('frame_stack', 4),
60
+ ('gradient_steps', 1),
61
+ ('learning_rate', 0.0001),
62
+ ('learning_starts', 100000),
63
+ ('n_timesteps', 10000000.0),
64
+ ('optimize_memory_usage', True),
65
+ ('policy', 'CnnPolicy'),
66
+ ('target_update_interval', 1000),
67
+ ('train_freq', 4),
68
+ ('normalize', False)])
69
  ```
args.yml ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object/apply:collections.OrderedDict
2
+ - - - algo
3
+ - dqn
4
+ - - device
5
+ - auto
6
+ - - env
7
+ - SpaceInvadersNoFrameskip-v4
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
+ - - pruner
45
+ - median
46
+ - - sampler
47
+ - tpe
48
+ - - save_freq
49
+ - -1
50
+ - - save_replay_buffer
51
+ - false
52
+ - - seed
53
+ - 1705736758
54
+ - - storage
55
+ - null
56
+ - - study_name
57
+ - null
58
+ - - tensorboard_log
59
+ - ''
60
+ - - track
61
+ - false
62
+ - - trained_agent
63
+ - ''
64
+ - - truncate_last_trajectory
65
+ - true
66
+ - - uuid
67
+ - false
68
+ - - vec_env
69
+ - dummy
70
+ - - verbose
71
+ - 1
72
+ - - wandb_entity
73
+ - null
74
+ - - wandb_project_name
75
+ - sb3
config.yml ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object/apply:collections.OrderedDict
2
+ - - - batch_size
3
+ - 32
4
+ - - buffer_size
5
+ - 100000
6
+ - - env_wrapper
7
+ - - stable_baselines3.common.atari_wrappers.AtariWrapper
8
+ - - exploration_final_eps
9
+ - 0.01
10
+ - - exploration_fraction
11
+ - 0.1
12
+ - - frame_stack
13
+ - 4
14
+ - - gradient_steps
15
+ - 1
16
+ - - learning_rate
17
+ - 0.0001
18
+ - - learning_starts
19
+ - 100000
20
+ - - n_timesteps
21
+ - 10000000.0
22
+ - - optimize_memory_usage
23
+ - true
24
+ - - policy
25
+ - CnnPolicy
26
+ - - target_update_interval
27
+ - 1000
28
+ - - train_freq
29
+ - 4
dqn-SpaceInvadersNoFrameskip-v4.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:daf32ab623f8197cc5635062f698d49bba0ce853570ec241bb5c8f55b42a20c8
3
+ size 27222219
dqn-SpaceInvadersNoFrameskip-v4/_stable_baselines3_version ADDED
@@ -0,0 +1 @@
 
 
1
+ 1.5.1a8
dqn-SpaceInvadersNoFrameskip-v4/data ADDED
The diff for this file is too large to render. See raw diff
 
dqn-SpaceInvadersNoFrameskip-v4/policy.optimizer.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4882333b1374ae3b56cf612631cef02e793b38cabc5ea0624bba45b4186297a3
3
+ size 13503145
dqn-SpaceInvadersNoFrameskip-v4/policy.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39c8abfec315b7fed2d0ea1b88a63afddd87dc9818018fbb8932615770d74716
3
+ size 13504937
dqn-SpaceInvadersNoFrameskip-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
dqn-SpaceInvadersNoFrameskip-v4/system_info.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ OS: Linux-5.4.188+-x86_64-with-Ubuntu-18.04-bionic #1 SMP Sun Apr 24 10:03:06 PDT 2022
2
+ Python: 3.7.13
3
+ Stable-Baselines3: 1.5.1a8
4
+ PyTorch: 1.11.0+cu113
5
+ GPU Enabled: True
6
+ Numpy: 1.21.6
7
+ Gym: 0.21.0
env_kwargs.yml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
replay.mp4 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4950e170ce578b9e9c16d59c6d3eaa8da1d6637e21ff77492854cef9d2ba0be9
3
- size 75341
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9de39ddeddeebcdd0b69f685c3e3f76a5945e47f471dcafc2dbdd37125f0a29
3
+ size 209720
results.json CHANGED
@@ -1 +1 @@
1
- {"mean_reward": -537.7599427904818, "std_reward": 108.40905184907803, "is_deterministic": true, "n_eval_episodes": 10, "eval_datetime": "2022-06-17T13:57:26.407930"}
 
1
+ {"mean_reward": 607.0, "std_reward": 156.27219842313605, "is_deterministic": false, "n_eval_episodes": 10, "eval_datetime": "2022-06-17T17:36:41.497219"}
train_eval_metrics.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cad7f900cae942e816e1c63547f19709b625512b83016362b9b604a1cb23dd16
3
+ size 59223