Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -21,7 +21,7 @@ model-index:
|
|
21 |
type: OpenAI/Gym/Box2d-LunarLander-v2
|
22 |
metrics:
|
23 |
- type: mean_reward
|
24 |
-
value:
|
25 |
name: mean_reward
|
26 |
---
|
27 |
|
@@ -60,7 +60,23 @@ python3 -u run.py
|
|
60 |
```
|
61 |
**run.py**
|
62 |
```python
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
```
|
65 |
</details>
|
66 |
|
@@ -75,7 +91,20 @@ python3 -u run.py
|
|
75 |
```
|
76 |
**run.py**
|
77 |
```python
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
```
|
80 |
</details>
|
81 |
|
@@ -92,7 +121,31 @@ python3 -u train.py
|
|
92 |
```
|
93 |
**train.py**
|
94 |
```python
|
95 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
```
|
97 |
</details>
|
98 |
|
@@ -219,7 +272,7 @@ exp_config = {
|
|
219 |
- **Demo:** [video](https://huggingface.co/OpenDILabCommunity/LunarLander-v2-C51/blob/main/replay.mp4)
|
220 |
<!-- Provide the size information for the model. -->
|
221 |
- **Parameters total size:** 214.3 KB
|
222 |
-
- **Last Update Date:** 2023-08-
|
223 |
|
224 |
## Environments
|
225 |
<!-- 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. -->
|
|
|
21 |
type: OpenAI/Gym/Box2d-LunarLander-v2
|
22 |
metrics:
|
23 |
- type: mean_reward
|
24 |
+
value: 197.47 +/- 90.44
|
25 |
name: mean_reward
|
26 |
---
|
27 |
|
|
|
60 |
```
|
61 |
**run.py**
|
62 |
```python
|
63 |
+
from ding.bonus import C51Agent
|
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 = C51Agent(
|
73 |
+
env_id="LunarLander-v2", exp_name="LunarLander-v2-C51", 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 |
|
|
|
91 |
```
|
92 |
**run.py**
|
93 |
```python
|
94 |
+
from ding.bonus import C51Agent
|
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/LunarLander-v2-C51")
|
99 |
+
# Instantiate the agent
|
100 |
+
agent = C51Agent(
|
101 |
+
env_id="LunarLander-v2", exp_name="LunarLander-v2-C51", 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 |
|
|
|
121 |
```
|
122 |
**train.py**
|
123 |
```python
|
124 |
+
from ding.bonus import C51Agent
|
125 |
+
from huggingface_ding import push_model_to_hub
|
126 |
+
|
127 |
+
# Instantiate the agent
|
128 |
+
agent = C51Agent(env_id="LunarLander-v2", exp_name="LunarLander-v2-C51")
|
129 |
+
# Train the agent
|
130 |
+
return_ = agent.train(step=int(4000000), collector_env_num=8, evaluator_env_num=8, debug=False)
|
131 |
+
# Push model to huggingface hub
|
132 |
+
push_model_to_hub(
|
133 |
+
agent=agent.best,
|
134 |
+
env_name="OpenAI/Gym/Box2d",
|
135 |
+
task_name="LunarLander-v2",
|
136 |
+
algo_name="C51",
|
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/c51.html",
|
140 |
+
github_doc_env_url="https://di-engine-docs.readthedocs.io/en/latest/13_envs/lunarlander.html",
|
141 |
+
installation_guide="pip3 install DI-engine[common_env]",
|
142 |
+
usage_file_by_git_clone="./c51/lunarlander_c51_deploy.py",
|
143 |
+
usage_file_by_huggingface_ding="./c51/lunarlander_c51_download.py",
|
144 |
+
train_file="./c51/lunarlander_c51.py",
|
145 |
+
repo_id="OpenDILabCommunity/LunarLander-v2-C51",
|
146 |
+
create_repo=False
|
147 |
+
)
|
148 |
+
|
149 |
```
|
150 |
</details>
|
151 |
|
|
|
272 |
- **Demo:** [video](https://huggingface.co/OpenDILabCommunity/LunarLander-v2-C51/blob/main/replay.mp4)
|
273 |
<!-- Provide the size information for the model. -->
|
274 |
- **Parameters total size:** 214.3 KB
|
275 |
+
- **Last Update Date:** 2023-08-07
|
276 |
|
277 |
## Environments
|
278 |
<!-- 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. -->
|