File size: 602 Bytes
59a5f71
 
 
 
 
 
 
 
 
 
 
 
 
4c9e562
59a5f71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
license: mit
library_name: pytorch
tags:
  - reinforcement-learning
  - locomotion
  - robotics
  - g1
---

# g1-dance

PyTorch checkpoint for a G1 humanoid locomotion policy trained with
ADD (Adversarial Differential Discriminators).

## Checkpoint info

| Key | Value |
|-----|-------|
| Training iterations | `10,900` |
| Total environment samples | `5,715,263,488` |
| Number of parameters | `4,371,991` |

## Usage

```python
import torch

checkpoint = torch.load("model.pt", map_location="cpu")
state_dict = checkpoint["model"]
# Load into your agent:
# agent.load_state_dict(state_dict)
```