Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- robotics
|
| 5 |
+
- vision-language-action
|
| 6 |
+
- robot-manipulation
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# libero_spatial
|
| 10 |
+
|
| 11 |
+
## Model Description
|
| 12 |
+
|
| 13 |
+
This is a vision-language-action model for robotic manipulation with progress-aware spatial subtask planning.
|
| 14 |
+
|
| 15 |
+
## Usage
|
| 16 |
+
|
| 17 |
+
```python
|
| 18 |
+
from transformers import AutoModelForCausalLM, AutoProcessor
|
| 19 |
+
|
| 20 |
+
model = AutoModelForCausalLM.from_pretrained("SPRVLA/libero_spatial")
|
| 21 |
+
processor = AutoProcessor.from_pretrained("SPRVLA/libero_spatial")
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
## License
|
| 25 |
+
|
| 26 |
+
MIT License
|