Views
No views yet
battery_try, blocks_ranking_try, cover_blocks, press_button.
Each task has its own executor — trained only on that task's 50-episode
demo_clean dataset — and its own normalization stats (unlike the
m1_mix release, which used one
joint checkpoint for all five M1 tasks).task_config = demo_clean, instruction_type = unseen, 100 episodes per task.
action_horizon is the per-task inference-time setting used for these numbers.| Task | action_horizon | Success Rate | Reward |
|---|---|---|---|
| battery_try | 15 | 0.21 | 0.00 |
| blocks_ranking_try | 15 | 0.15 | 0.00 |
| cover_blocks | 8 | 0.76 | 0.82 |
| press_button | 30 | 0.02 | 0.00 |
| Average | — | 0.285 | — |
eval_results/
(see eval_results/results.md).mn_submit/
├── README.md
├── checkpoints/
│ └── <task>/final_step30000.pt (+ .sha256) # one full ckpt per task, ~15.3 GB each
├── norm_stats/
│ └── <task>/norm_stats.json # per-task min-max state/action stats
└── eval_results/
├── results.md # scores + per-task action_horizon
└── <task>/ # _result.txt, episode*.mp4 (×100)checkpoints/<task>/final_step30000.pt is a single, unsplit full training
checkpoint (~15.3 GB): model_state_dict + optimizer_state_dict +
scheduler_state_dict, global_step 30000. Verify integrity with the .sha256
file next to it:sha256sum -c final_step30000.pt.sha256model_state_dict is self-contained — it already includes the fine-tuned
Qwen3-VL-2B backbone weights. Optional inference-only slimming (~15.3 GB → ~6 GB):1import torch
2ck = torch.load("final_step30000.pt", map_location="cpu", weights_only=False)
3torch.save({"model_state_dict": ck["model_state_dict"], "global_step": ck["global_step"]},
4 "final_step30000_inference.pt")Qwen/Qwen3-VL-2B-Instruct directory
(architecture + tokenizer/processor; Apache-2.0). Its weights are overwritten by the
checkpoint at load time, but the directory must exist locally:1huggingface-cli download Qwen/Qwen3-VL-2B-Instruct \
2 --local-dir policy/Mem-0/checkpoints/Qwen3-VL-2B-Instruct[-1, 1] using the per-task stats in
norm_stats/<task>/norm_stats.json. Always pair a checkpoint with its own task's
stats at inference; predicted actions are denormalized with the same file.