Views
No views yet
model.safetensors: 198MB (model weights)config.json: ACT configurationtrain_config.json: Training configurationpolicy_preprocessor.json: Input preprocessingpolicy_postprocessor.json: Output postprocessing1from lerobot.scripts.lerobot_train import load_policy
2import torch
3
4# Load the trained model
5policy = load_policy(
6 "asgard-robot/s0101-act-potato-handover",
7 device="cuda"
8)
9
10# Run inference
11# observation should contain:
12# - Images from wrist and external cameras
13# - Current joint positions
14action = policy(observation)1@misc{s0101_act_potato_handover_2024,
2 title={ACT: Potato Handover for ASGARD Robot},
3 author={ASGARD Team},
4 year={2024},
5 url={https://huggingface.co/asgard-robot/s0101-act-potato-handover}
6}