Update checkpoint (iter 9900)
Browse files- README.md +33 -0
- metadata.json +5 -0
- model.pt +3 -0
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: pytorch
|
| 4 |
+
tags:
|
| 5 |
+
- reinforcement-learning
|
| 6 |
+
- locomotion
|
| 7 |
+
- robotics
|
| 8 |
+
- g1
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# g1-walk
|
| 12 |
+
|
| 13 |
+
PyTorch checkpoint for a G1 humanoid locomotion policy trained with
|
| 14 |
+
ADD (Adversarial Distillation of Demonstrations).
|
| 15 |
+
|
| 16 |
+
## Checkpoint info
|
| 17 |
+
|
| 18 |
+
| Key | Value |
|
| 19 |
+
|-----|-------|
|
| 20 |
+
| Training iterations | `9,900` |
|
| 21 |
+
| Total environment samples | `5,190,975,488` |
|
| 22 |
+
| Number of parameters | `3,712,535` |
|
| 23 |
+
|
| 24 |
+
## Usage
|
| 25 |
+
|
| 26 |
+
```python
|
| 27 |
+
import torch
|
| 28 |
+
|
| 29 |
+
checkpoint = torch.load("model.pt", map_location="cpu")
|
| 30 |
+
state_dict = checkpoint["model"]
|
| 31 |
+
# Load into your agent:
|
| 32 |
+
# agent.load_state_dict(state_dict)
|
| 33 |
+
```
|
metadata.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"training_iterations": 9900,
|
| 3 |
+
"total_samples": 5190975488,
|
| 4 |
+
"num_parameters": 3712535
|
| 5 |
+
}
|
model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b38a074060c70a139c04767a09cdfffeef8c34fb87fc3ca5a4c48241da21699e
|
| 3 |
+
size 14861406
|