Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: transformers
|
| 4 |
+
pipeline_tag: robotics
|
| 5 |
+
tags:
|
| 6 |
+
- robotics
|
| 7 |
+
- manipulation
|
| 8 |
+
- gr00t
|
| 9 |
+
- servo
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# gr00t-n1.5-servo7
|
| 13 |
+
|
| 14 |
+
This is a GR00T N1.5 model checkpoint trained for robotic manipulation tasks.
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
|
| 18 |
+
- **Architecture**: GR00T_N1_5
|
| 19 |
+
- **Model Type**: gr00t_n1_5
|
| 20 |
+
- **Action Dimension**: 32
|
| 21 |
+
- **Action Horizon**: 16
|
| 22 |
+
- **Training Steps**: 5000
|
| 23 |
+
- **Compute Type**: bfloat16
|
| 24 |
+
|
| 25 |
+
## Training
|
| 26 |
+
|
| 27 |
+
This model was trained using the GR00T framework and represents a checkpoint at 5000 training steps.
|
| 28 |
+
|
| 29 |
+
## Usage
|
| 30 |
+
|
| 31 |
+
```python
|
| 32 |
+
# Load the model using transformers
|
| 33 |
+
from transformers import AutoModel, AutoConfig
|
| 34 |
+
|
| 35 |
+
config = AutoConfig.from_pretrained("PieterBecking/gr00t-n1.5-servo7")
|
| 36 |
+
model = AutoModel.from_pretrained("PieterBecking/gr00t-n1.5-servo7")
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
## Model Files
|
| 40 |
+
|
| 41 |
+
- `config.json`: Model configuration
|
| 42 |
+
- `model-00001-of-00002.safetensors`: Model weights (part 1)
|
| 43 |
+
- `model-00002-of-00002.safetensors`: Model weights (part 2)
|
| 44 |
+
- `model.safetensors.index.json`: Model weights index
|
| 45 |
+
|
| 46 |
+
## License
|
| 47 |
+
|
| 48 |
+
Apache 2.0
|