hello-world-yoo commited on
Commit
e94de68
·
verified ·
1 Parent(s): f4d2ee3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
10
+ ---
11
+
12
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
+
14
+ ## Dataset Description
15
+
16
+ - **Robot:** SO-ARM101 (so_follower)
17
+ - **Task:** Pick up the banana and place it on the plate
18
+ - **License:** apache-2.0
19
+
20
+ ## Dataset Structure
21
+
22
+ [meta/info.json](meta/info.json):
23
+
24
+ ```json
25
+ {
26
+ "codebase_version": "v2.1",
27
+ "robot_type": "so_follower",
28
+ "total_episodes": 58,
29
+ "total_frames": 35859,
30
+ "total_tasks": 1,
31
+ "total_videos": 116,
32
+ "total_chunks": 1,
33
+ "chunks_size": 1000,
34
+ "fps": 30,
35
+ "splits": {
36
+ "train": "0:58"
37
+ },
38
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
39
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4"
40
+ }
41
+ ```
42
+
43
+ ## Features
44
+
45
+ | Feature | Type | Shape |
46
+ |---------|------|-------|
47
+ | `action` | float32 | [6] |
48
+ | `observation.state` | float32 | [6] |
49
+ | `observation.images.front` | video | [480, 640, 3] |
50
+ | `observation.images.wrist` | video | [480, 640, 3] |
51
+ | `timestamp` | float32 | [1] |
52
+ | `frame_index` | int64 | [1] |
53
+ | `episode_index` | int64 | [1] |
54
+ | `index` | int64 | [1] |
55
+ | `task_index` | int64 | [1] |