Views
No views yet
| Task | Checkpoint | Training configuration |
|---|---|---|
Isaac-RAMBO-Quadruped-Go2-v0 | quadruped/model_2000.pt | 4096 environments, 2000 PPO iterations, seed 42 |
Isaac-RAMBO-Biped-Go2-v0 | biped/model_4000.pt | 4096 environments, 4000 PPO iterations, seed 42 |
model_*.pt is a CRL2 PyTorch training checkpoint. It contains the
policy, value network, optimizer state, observation normalizer, and completed
iteration count. It is not a Transformers model or an inference-only
safetensors file.agent.yaml and env.yaml files record the training
configuration. The checkpoint paths intentionally exclude training videos,
TensorBoard events, W&B files, and Python pickle configuration files.1quadruped/model_2000.pt 1cc5f68fe15e37ccabae26060d79a26a8c078ed465a81f6f729c2009b67ca706
2biped/model_4000.pt c16e64bf1ca2dc16878c386b742cd303e65040f52e8744cd0c96c540c595b2a6play.py. For example,
for the Quadruped policy:1hf download dontKnow23456/rambo-go2-policies quadruped/model_2000.pt \
2 --local-dir /tmp/rambo-go2-policies
3
4mkdir -p logs/crl2/rambo_quadruped/hf_quadruped/params
5cp /tmp/rambo-go2-policies/quadruped/model_2000.pt \
6 logs/crl2/rambo_quadruped/hf_quadruped/
7
8python scripts/reinforcement_learning/crl2/play.py \
9 --task Isaac-RAMBO-Quadruped-Go2-v0 \
10 --num_envs 1 \
11 --load_run hf_quadruped \
12 --load_checkpoint 2000Isaac-RAMBO-Biped-Go2-v0, log root
rambo_biped, run name hf_biped, and checkpoint 4000.6f6c87c614255a5ada063da40206a2fa67054cb6 of
catachiii/rambo, using Isaac Sim 4.5.0,
Isaac Lab, CRL2, and PyTorch. The local reproduction includes checkpoint
resume/normalizer-state fixes; use the accompanying workspace source for the
most reliable loading behavior.env.yaml is an Isaac Lab configuration dump that contains NumPy-specific
YAML tags. Treat it as trusted project configuration and load it only within a
trusted RAMBO/Isaac Lab environment.LICENSE-CC-BY-NC-4.0.md.1@article{cheng2025rambo,
2 title={RAMBO: RL-augmented Model-based Optimal Control for Whole-body Loco-manipulation},
3 author={Cheng, Jin and Kang, Dongho and Fadini, Gabriele and Shi, Guanya and Coros, Stelian},
4 journal={arXiv preprint arXiv:2504.06662},
5 year={2025}
6}.pt files are pickle-based checkpoints. Only load files obtained
from trusted sources, and use them in simulation before considering any
hardware deployment.