Instructions to use namaewa-im/spot-gr00t-task0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use namaewa-im/spot-gr00t-task0 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("/home/tree/.cache/huggingface/hub/models--nvidia--GR00T-N1.5-3B/snapshots/3c235401cb51575b3f091e68de96dc0785de971d") model = PeftModel.from_pretrained(base_model, "namaewa-im/spot-gr00t-task0") - Notebooks
- Google Colab
- Kaggle
Spot Robot GR00T Model
This is a fine-tuned GR00T model for Spot robot control, specifically trained for quadruped locomotion tasks.
Model Details
- Base Model: GR00T-N1.5-3B
- Fine-tuning Method: LoRA (Low-Rank Adaptation)
- Task: Spot robot action generation
- Input Modalities: Video, State, Language
- Output: Robot joint actions (4 legs × 3 joints each)
Usage
from gr00t.model.policy import Gr00tPolicy
from gr00t.data.embodiment_tags import EmbodimentTag
# Load the model
policy = Gr00tPolicy(
model_path="namaewa-im/spot-gr00t-task0",
embodiment_tag=EmbodimentTag.NEW_EMBODIMENT,
device="cuda"
)
# Use for inference
actions = policy.get_action(input_data)
Training Data
The model was fine-tuned on Spot robot demonstration data including:
- Video observations from ego-centric camera
- Joint positions and velocities
- Linear and angular velocities
- Gravity and command information
- Human-annotated task descriptions
Performance
The model achieves competitive performance on Spot robot locomotion tasks with:
- Mean MSE: ~0.55
- Standard deviation: ~0.12
License
This model is released under the MIT License.
- Downloads last month
- 2
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for namaewa-im/spot-gr00t-task0
Base model
nvidia/GR00T-N1.5-3B