Instructions to use asterisms45/Cosmos-Policy-OpenArm-Predict2-2B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LeRobot
How to use asterisms45/Cosmos-Policy-OpenArm-Predict2-2B with LeRobot:
- Notebooks
- Google Colab
- Kaggle
Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
library_name: cosmos-policy
|
| 4 |
+
pipeline_tag: robotics
|
| 5 |
+
tags:
|
| 6 |
+
- robotics
|
| 7 |
+
- cosmos-policy
|
| 8 |
+
- openarm
|
| 9 |
+
- lerobot
|
| 10 |
+
- action-generation
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Cosmos Policy OpenArm Predict2 2B
|
| 14 |
+
|
| 15 |
+
Fine-tuned NVIDIA Cosmos Policy checkpoint for OpenArm using
|
| 16 |
+
`asterisms45/my_openarm_dataset_combined_2cam`.
|
| 17 |
+
|
| 18 |
+
This repository contains the inference checkpoint only:
|
| 19 |
+
|
| 20 |
+
- `model/`: Cosmos distributed checkpoint model weights from
|
| 21 |
+
`openarm-2cam-46/checkpoints/iter_000050000/model`
|
| 22 |
+
- `openarm_dataset_statistics.json`: action/proprio normalization statistics
|
| 23 |
+
- `openarm_t5_embeddings.pkl`: cached T5 task embeddings
|
| 24 |
+
|
| 25 |
+
The optimizer state from the training run is intentionally not uploaded.
|
| 26 |
+
|
| 27 |
+
## Example
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
uv run --extra cu128 --group aloha --python 3.10 python -m \
|
| 31 |
+
cosmos_policy.experiments.robot.aloha.deploy \
|
| 32 |
+
--config cosmos_predict2_2b_480p_openarm_asterisms45_2cam_posttrain__inference_only \
|
| 33 |
+
--ckpt_path asterisms45/Cosmos-Policy-OpenArm-Predict2-2B \
|
| 34 |
+
--config_file cosmos_policy/config/config.py \
|
| 35 |
+
--use_third_person_image True \
|
| 36 |
+
--use_wrist_image True \
|
| 37 |
+
--num_wrist_images 2 \
|
| 38 |
+
--use_proprio True \
|
| 39 |
+
--normalize_proprio True \
|
| 40 |
+
--unnormalize_actions True \
|
| 41 |
+
--dataset_stats_path asterisms45/Cosmos-Policy-OpenArm-Predict2-2B/openarm_dataset_statistics.json \
|
| 42 |
+
--t5_text_embeddings_path asterisms45/Cosmos-Policy-OpenArm-Predict2-2B/openarm_t5_embeddings.pkl \
|
| 43 |
+
--trained_with_image_aug True \
|
| 44 |
+
--chunk_size 50 \
|
| 45 |
+
--num_open_loop_steps 50 \
|
| 46 |
+
--num_denoising_steps_action 10 \
|
| 47 |
+
--deterministic True
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
Model weights derive from NVIDIA Cosmos Policy. Check the upstream repository
|
| 51 |
+
and model license terms before redistribution or commercial use.
|