nenyea commited on
Commit
ec841a2
·
verified ·
1 Parent(s): 1ca5621

Add dataset card with metadata and usage instructions

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - lerobot
8
+ - avatar-robotics
9
+ - orange-hook
10
+ - suction-gripper
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+ ## Dataset Description
19
+
20
+ **Robot:** Agibot G1 humanoid robot
21
+ **Task:** Hook an orange from a bin (right arm, suction gripper)
22
+ **Episodes:** 751
23
+ **Total Frames:** 211394
24
+ **FPS:** 30
25
+ **Format:** LeRobot v3.0
26
+
27
+ ### Cameras
28
+ - `observation.images.camera` — Camera camera (640x800)
29
+ - `observation.images.wrist` — Wrist camera (1280x720)
30
+
31
+ ### Features
32
+ | Feature | Type | Shape |
33
+ |---------|------|-------|
34
+ | `observation.state` | float32 | [8] |
35
+ | `action` | float32 | [8] |
36
+ | `observation.images.camera` | video | [800, 640, 3] |
37
+ | `observation.images.wrist` | video | [720, 1280, 3] |
38
+ | `observation.force` | float32 | [6] |
39
+
40
+ ## Usage
41
+
42
+ ```python
43
+ from lerobot.datasets.lerobot_dataset import LeRobotDataset
44
+
45
+ dataset = LeRobotDataset("avatarrobotics/orange-hook-mar11-right")
46
+ sample = dataset[0]
47
+ ```
48
+
49
+ ## Citation
50
+
51
+ Created by [Avatar Robotics](https://avatarrobotics.ai).