Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -10,3 +10,44 @@ pinned: false
|
|
10 |
# Mistral AI Robotics Hackathon
|
11 |
|
12 |
Get all the details about the event at https://lu.ma/roboticshack
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
# Mistral AI Robotics Hackathon
|
11 |
|
12 |
Get all the details about the event at https://lu.ma/roboticshack
|
13 |
+
|
14 |
+
## Setting up SO-100 arm
|
15 |
+
|
16 |
+
#### Joining this organization
|
17 |
+
|
18 |
+
If you are participant of the hackathon, make sure you have gotten an invite link from Ana & Julia. If not, ping them on discord.
|
19 |
+
|
20 |
+
#### Recroding a dataset
|
21 |
+
|
22 |
+
Everything should be identical to SO-100 tutorial [here](https://github.com/huggingface/lerobot/blob/main/examples/10_use_so100.md#g-record-a-dataset) with one difference:
|
23 |
+
|
24 |
+
as part of this hackathon, we want you to push the dataset to this org `roboticshack` rather than under your individual username.
|
25 |
+
|
26 |
+
Therefore, when you are [recording a dataset](https://github.com/huggingface/lerobot/blob/main/examples/10_use_so100.md#g-record-a-dataset), the change would be:
|
27 |
+
```diff
|
28 |
+
python lerobot/scripts/control_robot.py \
|
29 |
+
--robot.type=so100 \
|
30 |
+
--control.type=record \
|
31 |
+
--control.fps=30 \
|
32 |
+
--control.single_task="Grasp a lego block and put it in the bin." \
|
33 |
+
- --control.repo_id=${HF_USER}/so100_test \
|
34 |
+
+ --control.repo_id=roboticshack/[TEAM-NAME]-[DATASET-NAME] \
|
35 |
+
--control.tags='["so100","tutorial"]' \
|
36 |
+
--control.warmup_time_s=5 \
|
37 |
+
--control.episode_time_s=30 \
|
38 |
+
--control.reset_time_s=30 \
|
39 |
+
--control.num_episodes=2 \
|
40 |
+
--control.push_to_hub=true
|
41 |
+
```
|
42 |
+
|
43 |
+
#### Visualize a dataset
|
44 |
+
|
45 |
+
As written in the tutorial, you can visualize datasets [locally](https://github.com/huggingface/lerobot/blob/main/examples/10_use_so100.md#h-visualize-a-dataset).
|
46 |
+
|
47 |
+
Assuming you've uploaded the dataset, you can also visualize them online:
|
48 |
+
* go to https://huggingface.co/spaces/lerobot/visualize_dataset
|
49 |
+
* paste your dataset id `roboticshack/[TEAM-NAME]-[DATASET-NAME]`
|
50 |
+
|
51 |
+
|
52 |
+
<img width="300" src="https://cdn-uploads.huggingface.co/production/uploads/60a551a34ecc5d054c8ad93e/-MwW-D-lHWSEPUzcF37dL.png">
|
53 |
+
|