zjowowen commited on
Commit
520b627
1 Parent(s): 75f8ef4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +292 -0
README.md ADDED
@@ -0,0 +1,292 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: apache-2.0
4
+ library_name: pytorch
5
+ tags:
6
+ - deep-reinforcement-learning
7
+ - reinforcement-learning
8
+ - DI-engine
9
+ - SpaceInvadersNoFrameskip-v4
10
+ benchmark_name: OpenAI/Gym/Atari
11
+ task_name: SpaceInvadersNoFrameskip-v4
12
+ pipeline_tag: reinforcement-learning
13
+ model-index:
14
+ - name: IMPALA
15
+ results:
16
+ - task:
17
+ type: reinforcement-learning
18
+ name: reinforcement-learning
19
+ dataset:
20
+ name: OpenAI/Gym/Atari-SpaceInvadersNoFrameskip-v4
21
+ type: OpenAI/Gym/Atari-SpaceInvadersNoFrameskip-v4
22
+ metrics:
23
+ - type: mean_reward
24
+ value: 1070.0 +/- 0.0
25
+ name: mean_reward
26
+ ---
27
+
28
+ # Play **SpaceInvadersNoFrameskip-v4** with **IMPALA** Policy
29
+
30
+ ## Model Description
31
+ <!-- Provide a longer summary of what this model is. -->
32
+ This is a simple **IMPALA** implementation to OpenAI/Gym/Atari **SpaceInvadersNoFrameskip-v4** using the [DI-engine library](https://github.com/opendilab/di-engine) and the [DI-zoo](https://github.com/opendilab/DI-engine/tree/main/dizoo).
33
+
34
+ **DI-engine** is a python library for solving general decision intelligence problems, which is based on implementations of reinforcement learning framework using PyTorch or JAX. This library aims to standardize the reinforcement learning framework across different algorithms, benchmarks, environments, and to support both academic researches and prototype applications. Besides, self-customized training pipelines and applications are supported by reusing different abstraction levels of DI-engine reinforcement learning framework.
35
+
36
+
37
+
38
+ ## Model Usage
39
+ ### Install the Dependencies
40
+ <details close>
41
+ <summary>(Click for Details)</summary>
42
+
43
+ ```shell
44
+ # install huggingface_ding
45
+ git clone https://github.com/opendilab/huggingface_ding.git
46
+ pip3 install -e ./huggingface_ding/
47
+ # install environment dependencies if needed
48
+ pip3 install DI-engine[common_env,video]
49
+ ```
50
+ </details>
51
+
52
+ ### Git Clone from Huggingface and Run the Model
53
+
54
+ <details close>
55
+ <summary>(Click for Details)</summary>
56
+
57
+ ```shell
58
+ # running with trained model
59
+ python3 -u run.py
60
+ ```
61
+ **run.py**
62
+ ```python
63
+ from ding.bonus import IMPALAAgent
64
+ from ding.config import Config
65
+ from easydict import EasyDict
66
+ import torch
67
+
68
+ # Pull model from files which are git cloned from huggingface
69
+ policy_state_dict = torch.load("pytorch_model.bin", map_location=torch.device("cpu"))
70
+ cfg = EasyDict(Config.file_to_dict("policy_config.py").cfg_dict)
71
+ # Instantiate the agent
72
+ agent = IMPALAAgent(
73
+ env_id="SpaceInvadersNoFrameskip-v4", exp_name="SpaceInvadersNoFrameskip-v4-IMPALA", cfg=cfg.exp_config, policy_state_dict=policy_state_dict
74
+ )
75
+ # Continue training
76
+ agent.train(step=5000)
77
+ # Render the new agent performance
78
+ agent.deploy(enable_save_replay=True)
79
+
80
+ ```
81
+ </details>
82
+
83
+ ### Run Model by Using Huggingface_ding
84
+
85
+ <details close>
86
+ <summary>(Click for Details)</summary>
87
+
88
+ ```shell
89
+ # running with trained model
90
+ python3 -u run.py
91
+ ```
92
+ **run.py**
93
+ ```python
94
+ from ding.bonus import IMPALAAgent
95
+ from huggingface_ding import pull_model_from_hub
96
+
97
+ # Pull model from Hugggingface hub
98
+ policy_state_dict, cfg = pull_model_from_hub(repo_id="OpenDILabCommunity/SpaceInvadersNoFrameskip-v4-IMPALA")
99
+ # Instantiate the agent
100
+ agent = IMPALAAgent(
101
+ env_id="SpaceInvadersNoFrameskip-v4", exp_name="SpaceInvadersNoFrameskip-v4-IMPALA", cfg=cfg.exp_config, policy_state_dict=policy_state_dict
102
+ )
103
+ # Continue training
104
+ agent.train(step=5000)
105
+ # Render the new agent performance
106
+ agent.deploy(enable_save_replay=True)
107
+
108
+ ```
109
+ </details>
110
+
111
+ ## Model Training
112
+
113
+ ### Train the Model and Push to Huggingface_hub
114
+
115
+ <details close>
116
+ <summary>(Click for Details)</summary>
117
+
118
+ ```shell
119
+ #Training Your Own Agent
120
+ python3 -u train.py
121
+ ```
122
+ **train.py**
123
+ ```python
124
+ from ding.bonus import IMPALAAgent
125
+ from huggingface_ding import push_model_to_hub
126
+
127
+ # Instantiate the agent
128
+ agent = IMPALAAgent(env_id="SpaceInvadersNoFrameskip-v4", exp_name="SpaceInvadersNoFrameskip-v4-IMPALA")
129
+ # Train the agent
130
+ return_ = agent.train(step=int(20000000))
131
+ # Push model to huggingface hub
132
+ push_model_to_hub(
133
+ agent=agent.best,
134
+ env_name="OpenAI/Gym/Atari",
135
+ task_name="SpaceInvadersNoFrameskip-v4",
136
+ algo_name="IMPALA",
137
+ wandb_url=return_.wandb_url,
138
+ github_repo_url="https://github.com/opendilab/DI-engine",
139
+ github_doc_model_url="https://di-engine-docs.readthedocs.io/en/latest/12_policies/impala.html",
140
+ github_doc_env_url="https://di-engine-docs.readthedocs.io/en/latest/13_envs/atari.html",
141
+ installation_guide="pip3 install DI-engine[common_env,video]",
142
+ usage_file_by_git_clone="./impala/spaceinvaders_impala_deploy.py",
143
+ usage_file_by_huggingface_ding="./impala/spaceinvaders_impala_download.py",
144
+ train_file="./impala/spaceinvaders_impala.py",
145
+ repo_id="OpenDILabCommunity/SpaceInvadersNoFrameskip-v4-IMPALA",
146
+ create_repo=True
147
+ )
148
+
149
+ ```
150
+ </details>
151
+
152
+ **Configuration**
153
+ <details close>
154
+ <summary>(Click for Details)</summary>
155
+
156
+
157
+ ```python
158
+ exp_config = {
159
+ 'env': {
160
+ 'manager': {
161
+ 'episode_num': float("inf"),
162
+ 'max_retry': 1,
163
+ 'retry_type': 'reset',
164
+ 'auto_reset': True,
165
+ 'step_timeout': None,
166
+ 'reset_timeout': None,
167
+ 'retry_waiting_time': 0.1,
168
+ 'cfg_type': 'BaseEnvManagerDict'
169
+ },
170
+ 'stop_value': 2000,
171
+ 'n_evaluator_episode': 8,
172
+ 'env_id': 'SpaceInvadersNoFrameskip-v4',
173
+ 'collector_env_num': 8,
174
+ 'evaluator_env_num': 8,
175
+ 'fram_stack': 4,
176
+ 'env_wrapper': 'atari_default'
177
+ },
178
+ 'policy': {
179
+ 'model': {
180
+ 'obs_shape': [4, 84, 84],
181
+ 'action_shape': 6,
182
+ 'encoder_hidden_size_list': [128, 128, 256, 256],
183
+ 'critic_head_hidden_size': 256,
184
+ 'critic_head_layer_num': 3,
185
+ 'actor_head_hidden_size': 256,
186
+ 'actor_head_layer_num': 3
187
+ },
188
+ 'learn': {
189
+ 'learner': {
190
+ 'train_iterations': 1000000000,
191
+ 'dataloader': {
192
+ 'num_workers': 0
193
+ },
194
+ 'log_policy': True,
195
+ 'hook': {
196
+ 'load_ckpt_before_run': '',
197
+ 'log_show_after_iter': 100,
198
+ 'save_ckpt_after_iter': 10000,
199
+ 'save_ckpt_after_run': True
200
+ },
201
+ 'cfg_type': 'BaseLearnerDict'
202
+ },
203
+ 'update_per_collect': 2,
204
+ 'batch_size': 128,
205
+ 'learning_rate': 0.0006,
206
+ 'value_weight': 0.5,
207
+ 'entropy_weight': 0.01,
208
+ 'discount_factor': 0.99,
209
+ 'lambda_': 0.95,
210
+ 'rho_clip_ratio': 1.0,
211
+ 'c_clip_ratio': 1.0,
212
+ 'rho_pg_clip_ratio': 1.0,
213
+ 'grad_clip_type': 'clip_norm',
214
+ 'clip_value': 5
215
+ },
216
+ 'collect': {
217
+ 'collector': {
218
+ 'collect_print_freq': 1000
219
+ },
220
+ 'n_sample': 16,
221
+ 'unroll_len': 64
222
+ },
223
+ 'eval': {
224
+ 'evaluator': {
225
+ 'eval_freq': 500,
226
+ 'render': {
227
+ 'render_freq': -1,
228
+ 'mode': 'train_iter'
229
+ },
230
+ 'figure_path': None,
231
+ 'cfg_type': 'InteractionSerialEvaluatorDict',
232
+ 'stop_value': 2000,
233
+ 'n_episode': 8
234
+ }
235
+ },
236
+ 'other': {
237
+ 'replay_buffer': {
238
+ 'replay_buffer_size': 64000,
239
+ 'max_use': 16,
240
+ 'sliced': True
241
+ }
242
+ },
243
+ 'on_policy': False,
244
+ 'cuda': True,
245
+ 'multi_gpu': False,
246
+ 'bp_update_sync': True,
247
+ 'traj_len_inf': False,
248
+ 'type': 'impala',
249
+ 'priority': False,
250
+ 'priority_IS_weight': False,
251
+ 'action_space': 'discrete',
252
+ 'unroll_len': 64,
253
+ 'transition_with_policy_data': True,
254
+ 'cfg_type': 'IMPALAPolicyDict',
255
+ 'random_collect_size': 5000
256
+ },
257
+ 'exp_name': 'SpaceInvadersNoFrameskip-v4-IMPALA',
258
+ 'seed': 0,
259
+ 'wandb_logger': {
260
+ 'gradient_logger': True,
261
+ 'video_logger': True,
262
+ 'plot_logger': True,
263
+ 'action_logger': True,
264
+ 'return_logger': False
265
+ }
266
+ }
267
+
268
+ ```
269
+ </details>
270
+
271
+ **Training Procedure**
272
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
273
+ - **Weights & Biases (wandb):** [monitor link](https://wandb.ai/zjowowen/SpaceInvadersNoFrameskip-v4-IMPALA)
274
+
275
+ ## Model Information
276
+ <!-- Provide the basic links for the model. -->
277
+ - **Github Repository:** [repo link](https://github.com/opendilab/DI-engine)
278
+ - **Doc**: [DI-engine-docs Algorithm link](https://di-engine-docs.readthedocs.io/en/latest/12_policies/impala.html)
279
+ - **Configuration:** [config link](https://huggingface.co/OpenDILabCommunity/SpaceInvadersNoFrameskip-v4-IMPALA/blob/main/policy_config.py)
280
+ - **Demo:** [video](https://huggingface.co/OpenDILabCommunity/SpaceInvadersNoFrameskip-v4-IMPALA/blob/main/replay.mp4)
281
+ <!-- Provide the size information for the model. -->
282
+ - **Parameters total size:** 47651.05 KB
283
+ - **Last Update Date:** 2023-10-20
284
+
285
+ ## Environments
286
+ <!-- Address questions around what environment the model is intended to be trained and deployed at, including the necessary information needed to be provided for future users. -->
287
+ - **Benchmark:** OpenAI/Gym/Atari
288
+ - **Task:** SpaceInvadersNoFrameskip-v4
289
+ - **Gym version:** 0.25.1
290
+ - **DI-engine version:** v0.4.9
291
+ - **PyTorch version:** 2.0.1+cu117
292
+ - **Doc**: [DI-engine-docs Environments link](https://di-engine-docs.readthedocs.io/en/latest/13_envs/atari.html)