aliberts HF staff commited on
Commit
356b4e4
1 Parent(s): 3055aa2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +130 -52
README.md CHANGED
@@ -1,17 +1,31 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
6
  - aloha
 
 
 
7
  ---
 
8
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
9
 
10
- [meta/info.json](meta/info.json)
 
 
 
 
 
 
 
 
 
 
11
  ```json
12
  {
13
  "codebase_version": "v2.0",
14
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
15
  "robot_type": "aloha",
16
  "total_episodes": 50,
17
  "total_frames": 25000,
@@ -23,57 +37,121 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
23
  "splits": {
24
  "train": "0:50"
25
  },
26
- "keys": [
27
- "observation.state",
28
- "action"
29
- ],
30
- "video_keys": [],
31
- "image_keys": [
32
- "observation.images.top"
33
- ],
34
- "shapes": {
35
- "observation.state": 14,
36
- "action": 14,
37
  "observation.images.top": {
38
- "width": 640,
39
- "height": 480,
40
- "channels": 3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  }
42
- },
43
- "names": {
44
- "observation.state": [
45
- "left_waist",
46
- "left_shoulder",
47
- "left_elbow",
48
- "left_forearm_roll",
49
- "left_wrist_angle",
50
- "left_wrist_rotate",
51
- "left_gripper",
52
- "right_waist",
53
- "right_shoulder",
54
- "right_elbow",
55
- "right_forearm_roll",
56
- "right_wrist_angle",
57
- "right_wrist_rotate",
58
- "right_gripper"
59
- ],
60
- "action": [
61
- "left_waist",
62
- "left_shoulder",
63
- "left_elbow",
64
- "left_forearm_roll",
65
- "left_wrist_angle",
66
- "left_wrist_rotate",
67
- "left_gripper",
68
- "right_waist",
69
- "right_shoulder",
70
- "right_elbow",
71
- "right_forearm_roll",
72
- "right_wrist_angle",
73
- "right_wrist_rotate",
74
- "right_gripper"
75
- ]
76
- },
77
- "videos": null
78
  }
 
 
 
 
 
 
 
 
 
79
  ```
 
1
  ---
2
+ license: mit
3
  task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
  - aloha
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
  ---
12
+
13
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
 
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper [optional]:** [More Information Needed]
21
+ - **License:** mit
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
  ```json
27
  {
28
  "codebase_version": "v2.0",
 
29
  "robot_type": "aloha",
30
  "total_episodes": 50,
31
  "total_frames": 25000,
 
37
  "splits": {
38
  "train": "0:50"
39
  },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": null,
42
+ "features": {
 
 
 
 
 
 
 
 
43
  "observation.images.top": {
44
+ "dtype": "image",
45
+ "shape": [
46
+ 480,
47
+ 640,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channel"
54
+ ]
55
+ },
56
+ "observation.state": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 14
60
+ ],
61
+ "names": {
62
+ "motors": [
63
+ "left_waist",
64
+ "left_shoulder",
65
+ "left_elbow",
66
+ "left_forearm_roll",
67
+ "left_wrist_angle",
68
+ "left_wrist_rotate",
69
+ "left_gripper",
70
+ "right_waist",
71
+ "right_shoulder",
72
+ "right_elbow",
73
+ "right_forearm_roll",
74
+ "right_wrist_angle",
75
+ "right_wrist_rotate",
76
+ "right_gripper"
77
+ ]
78
+ }
79
+ },
80
+ "action": {
81
+ "dtype": "float32",
82
+ "shape": [
83
+ 14
84
+ ],
85
+ "names": {
86
+ "motors": [
87
+ "left_waist",
88
+ "left_shoulder",
89
+ "left_elbow",
90
+ "left_forearm_roll",
91
+ "left_wrist_angle",
92
+ "left_wrist_rotate",
93
+ "left_gripper",
94
+ "right_waist",
95
+ "right_shoulder",
96
+ "right_elbow",
97
+ "right_forearm_roll",
98
+ "right_wrist_angle",
99
+ "right_wrist_rotate",
100
+ "right_gripper"
101
+ ]
102
+ }
103
+ },
104
+ "episode_index": {
105
+ "dtype": "int64",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "frame_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "timestamp": {
119
+ "dtype": "float32",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "next.done": {
126
+ "dtype": "bool",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "task_index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
  }
146
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  }
148
+ ```
149
+
150
+
151
+ ## Citation [optional]
152
+
153
+ **BibTeX:**
154
+
155
+ ```bibtex
156
+ [More Information Needed]
157
  ```