Views
No views yet
1python lerobot/scripts/train.py \
2 --policy.type=dot \
3 --dataset.repo_id=lerobot/pusht \
4 --env.type=pusht \
5 --env.task=PushT-v0 \
6 --output_dir=outputs/train/pusht_images \
7 --batch_size=24 \
8 --log_freq=1000 \
9 --eval_freq=10000 \
10 --save_freq=50000 \
11 --offline.steps=1000000 \
12 --seed=100000 \
13 --wandb.enable=true \
14 --num_workers=24 \
15 --use_amp=true \
16 --device=cuda \
17 --policy.return_every_n=21python lerobot/scripts/eval.py \
2 --policy.path=IliaLarchenko/dot_pusht_images \
3 --env.type=pusht \
4 --env.task=PushT-v0 \
5 --eval.n_episodes=1000 \
6 --eval.batch_size=100 \
7 --seed=1000000