Views
No views yet
robomimic/
{task}_{env_type}_{obs_type}/
delta_legacy/ # Original checkpoints (rot6d repr + delta controller)
abs/ # Absolute action space checkpoints
delta/ # Delta action space checkpoints (7D, no rot6d)
rel/ # Relative action space checkpoints
pusht/ # PushT environment checkpoints
kitchen/ # Kitchen environment checkpoints| Action Space | Config Suffix | abs_action | action_type | Dataset | act_dim (single/dual) |
|---|---|---|---|---|---|
| delta_legacy | _delta_legacy | true | delta | low_dim.hdf5 | 10 / 20 |
| absolute | _abs | true | absolute | low_dim_abs.hdf5 | 10 / 20 |
| delta | _delta | false | delta | low_dim.hdf5 | 7 / 14 |
| relative | _rel | true | relative | low_dim_abs.hdf5 | 10 / 20 |
Important: The majority of released robomimic checkpoints (underdelta_legacy/) were trained with the delta_legacy action space. You must use the corresponding_delta_legacytask config to evaluate them correctly. Using the default config (which uses absolute actions) will result in 0% success rate due to normalizer and controller mismatches.
1# Download and evaluate a delta_legacy checkpoint
2uv run examples/train_robomimic.py \
3 mode=eval \
4 task=lift_ph_state_delta_legacy \
5 network=chiunet \
6 optimization.loss_type=mip \
7 optimization.model_path="path/to/lift_ph_state_mip_chiunet_256_seed3_success100.pt"lift_ph_state_delta_legacy, lift_ph_state_abs, lift_ph_state_delta, lift_ph_state_relcan_ph_state_delta_legacy, can_ph_state_abs, can_ph_state_delta, can_ph_state_relsquare_ph_state_delta_legacy, square_ph_state_abs, square_ph_state_delta, square_ph_state_reltool_hang_ph_state_delta_legacy, tool_hang_ph_state_abs, tool_hang_ph_state_delta, tool_hang_ph_state_reltransport_ph_state_delta_legacy, transport_ph_state_abs, transport_ph_state_delta, transport_ph_state_rel_mh (multi-human) variants are also available (e.g., lift_mh_state_delta_legacy).{loss_type}_{network}_{dim}_seed{N}_success{N}.ptmip, flow, regression, psd, lsd, straight_flowchiunet, chitransformer, mlp, sudeepdit, rnn256, 384, 512)