Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -28,8 +28,30 @@ This simple donut isn't just a snack on a stick—it's proof that robots can lea
|
|
| 28 |
|
| 29 |
Video (robot trained using this dataset, ACT policy for 40k steps): [link](https://huggingface.co/datasets/LeRobot-worldwide-hackathon/submissions/discussions/11)
|
| 30 |
|
|
|
|
| 31 |
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
```
|
| 35 |
python -m lerobot.record \
|
|
|
|
| 28 |
|
| 29 |
Video (robot trained using this dataset, ACT policy for 40k steps): [link](https://huggingface.co/datasets/LeRobot-worldwide-hackathon/submissions/discussions/11)
|
| 30 |
|
| 31 |
+
Train from scratch:
|
| 32 |
|
| 33 |
+
```
|
| 34 |
+
python lerobot/scripts/train.py \
|
| 35 |
+
--dataset.repo_id=siakovlev/forloop_donut_on_stick_050 \
|
| 36 |
+
--policy.type=act \
|
| 37 |
+
--output_dir=outputs/train/forloop_donut_on_stick_policy_050 \
|
| 38 |
+
--job_name=forloop_job \
|
| 39 |
+
--policy.device=cuda
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
Train (fine-tune existing policy):
|
| 43 |
+
|
| 44 |
+
```
|
| 45 |
+
python lerobot/scripts/train.py \
|
| 46 |
+
--dataset.repo_id=siakovlev/forloop_donut_on_stick_020_val \
|
| 47 |
+
--policy.path=siakovlev/forloop_donut_on_stick_policy_050 \
|
| 48 |
+
--output_dir=outputs/train/forloop_donut_on_stick_policy_020 \
|
| 49 |
+
--job_name=forloop_job \
|
| 50 |
+
--policy.device=cuda \
|
| 51 |
+
--save_freq=4000 \
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
Recording config (for data recording and evaluation):
|
| 55 |
|
| 56 |
```
|
| 57 |
python -m lerobot.record \
|