Views
No views yet
| Model | Val Loss | Improvement |
|---|---|---|
| Standard ACT | 0.1289 | baseline |
| Modified ACT | 0.0931 | 27.8% better |
1import torch
2from huggingface_hub import hf_hub_download
3
4# Download checkpoint
5checkpoint_path = hf_hub_download(
6 repo_id="aryannzzz/act-metaworld-shelf-standard",
7 filename="best_model.pth"
8)
9
10# Load model
11checkpoint = torch.load(checkpoint_path, weights_only=False)
12# model.load_state_dict(checkpoint['model_state_dict'])best_model.pth: Model checkpoint (contains model_state_dict, optimizer_state_dict, and training stats)norm_stats.npz: Normalization statistics (state_mean, state_std, action_mean, action_std)config.json: Model configuration1@article{zhao2023learning,
2 title={Learning Fine-Grained Bimanual Manipulation with Low-Cost Hardware},
3 author={Zhao, Tony Z and others},
4 journal={RSS},
5 year={2023}
6}