Views
No views yet
Summary: This model demonstrates the capabilities of Diffusion Policy on the precision-demanding Push-T task. It was trained using the LeRobot framework as part of a thesis research project benchmarking Imitation Learning algorithms.
| Metric | Value | Comparison to ACT Baseline | Status |
|---|---|---|---|
| Success Rate | 14.0% | Significant Improvement (ACT: 0%) | 🏆 |
| Avg Max Reward | 0.81 | +58% Higher Precision (ACT: ~0.51) | 📈 |
| Avg Sum Reward | 130.46 | +147% More Stable (ACT: ~52.7) | ✅ |
Note: The Push-T environment requires >95% target coverage for success. An average max reward of0.81indicates the policy consistently moves the block very close to the target position, proving strong manipulation capabilities despite the strict success threshold.
| Parameter | Description |
|---|---|
| Architecture | ResNet18 (Vision Backbone) + U-Net (Diffusion Head) |
| Prediction Horizon | 16 steps |
| Observation History | 2 steps |
| Action Steps | 8 steps |
Lemon-03/DP_PushT_testLemon-03/DP_PushT_test_Resumelr=1e-4)1python -m lerobot.scripts.lerobot_train \
2 --policy.type diffusion \
3 --env.type pusht \
4 --dataset.repo_id lerobot/pusht \
5 --wandb.enable true \
6 --eval.batch_size 8 \
7 --job_name DP_PushT_Resume \
8 --policy.repo_id Lemon-03/DP_PushT_test_Resume \
9 --policy.pretrained_path outputs/train/2025-12-02/14-33-35_DP_PushT/checkpoints/last/pretrained_model \
10 --steps 1000001python -m lerobot.scripts.lerobot_eval \
2 --policy.type diffusion \
3 --policy.pretrained_path outputs/train/2025-12-04/14-47-37_DP_PushT_Resume/checkpoints/last/pretrained_model \
4 --eval.n_episodes 50 \
5 --eval.batch_size 10 \
6 --env.type pusht \
7 --env.task PushT-v01python -m lerobot.scripts.lerobot_eval \
2 --policy.type diffusion \
3 --policy.pretrained_path Lemon-03/DP_PushT_test_Resume \
4 --eval.n_episodes 50 \
5 --eval.batch_size 10 \
6 --env.type pusht \
7 --env.task PushT-v0