File size: 868 Bytes
37b33e7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
35
36
37
38
39
40
41
42
---
license: other
tags:
- reinforcement-learning
- robot
- g1
- bfmzero
---

# BFMZero - 29DoF Checkpoint

Trained checkpoint for BFMZero (FBcprAuxAgent / FBcprAuxModel) with **29 degrees of freedom**.

## Training Status

- **Steps**: 144,000,000
- **Config**: Residual MLP with z_dim=128, hidden_dim=1024, 4 hidden layers
- **Device**: CUDA

## Files

| File | Description |
|------|-------------|
| `model.safetensors` | Model weights (SafeTensors format) |
| `optimizers.pth` | Optimizer states |
| `config.json` | Model architecture configuration |
| `init_kwargs.json` | Initialization parameters |
| `train_status.json` | Training step counter |

## Usage

```python
from huggingface_hub import hf_hub_download
import torch

# Download model weights
model_path = hf_hub_download(
    repo_id="Kennyp-Chen/bfmzero-29dof",
    filename="model.safetensors"
)
```