aliberts HF staff commited on
Commit
6c67981
1 Parent(s): c3ab25b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +131 -1
README.md CHANGED
@@ -3,6 +3,136 @@ task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
 
6
  ---
7
- This dataset was created using [🤗 LeRobot](https://github.com/huggingface/lerobot).
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/train-{episode_index:05d}-of-{total_episodes:05d}.parquet",
15
+ "robot_type": "aloha",
16
+ "total_episodes": 55,
17
+ "total_frames": 110000,
18
+ "total_tasks": 1,
19
+ "fps": 50,
20
+ "splits": {
21
+ "train": "0:55"
22
+ },
23
+ "keys": [
24
+ "observation.state",
25
+ "observation.effort",
26
+ "action"
27
+ ],
28
+ "video_keys": [
29
+ "observation.images.cam_high",
30
+ "observation.images.cam_left_wrist",
31
+ "observation.images.cam_right_wrist"
32
+ ],
33
+ "image_keys": [],
34
+ "shapes": {
35
+ "observation.state": 14,
36
+ "observation.effort": 14,
37
+ "action": 14,
38
+ "observation.images.cam_high": {
39
+ "width": 640,
40
+ "height": 480,
41
+ "channels": 3
42
+ },
43
+ "observation.images.cam_left_wrist": {
44
+ "width": 640,
45
+ "height": 480,
46
+ "channels": 3
47
+ },
48
+ "observation.images.cam_right_wrist": {
49
+ "width": 640,
50
+ "height": 480,
51
+ "channels": 3
52
+ }
53
+ },
54
+ "names": {
55
+ "observation.state": [
56
+ "left_waist",
57
+ "left_shoulder",
58
+ "left_elbow",
59
+ "left_forearm_roll",
60
+ "left_wrist_angle",
61
+ "left_wrist_rotate",
62
+ "left_gripper",
63
+ "right_waist",
64
+ "right_shoulder",
65
+ "right_elbow",
66
+ "right_forearm_roll",
67
+ "right_wrist_angle",
68
+ "right_wrist_rotate",
69
+ "right_gripper"
70
+ ],
71
+ "action": [
72
+ "left_waist",
73
+ "left_shoulder",
74
+ "left_elbow",
75
+ "left_forearm_roll",
76
+ "left_wrist_angle",
77
+ "left_wrist_rotate",
78
+ "left_gripper",
79
+ "right_waist",
80
+ "right_shoulder",
81
+ "right_elbow",
82
+ "right_forearm_roll",
83
+ "right_wrist_angle",
84
+ "right_wrist_rotate",
85
+ "right_gripper"
86
+ ],
87
+ "observation.effort": [
88
+ "left_waist",
89
+ "left_shoulder",
90
+ "left_elbow",
91
+ "left_forearm_roll",
92
+ "left_wrist_angle",
93
+ "left_wrist_rotate",
94
+ "left_gripper",
95
+ "right_waist",
96
+ "right_shoulder",
97
+ "right_elbow",
98
+ "right_forearm_roll",
99
+ "right_wrist_angle",
100
+ "right_wrist_rotate",
101
+ "right_gripper"
102
+ ]
103
+ },
104
+ "videos": {
105
+ "videos_path": "videos/{video_key}_episode_{episode_index:06d}.mp4",
106
+ "observation.images.cam_high": {
107
+ "video.fps": 50.0,
108
+ "video.width": 640,
109
+ "video.height": 480,
110
+ "video.channels": 3,
111
+ "video.codec": "av1",
112
+ "video.pix_fmt": "yuv420p",
113
+ "video.is_depth_map": false,
114
+ "has_audio": false
115
+ },
116
+ "observation.images.cam_left_wrist": {
117
+ "video.fps": 50.0,
118
+ "video.width": 640,
119
+ "video.height": 480,
120
+ "video.channels": 3,
121
+ "video.codec": "av1",
122
+ "video.pix_fmt": "yuv420p",
123
+ "video.is_depth_map": false,
124
+ "has_audio": false
125
+ },
126
+ "observation.images.cam_right_wrist": {
127
+ "video.fps": 50.0,
128
+ "video.width": 640,
129
+ "video.height": 480,
130
+ "video.channels": 3,
131
+ "video.codec": "av1",
132
+ "video.pix_fmt": "yuv420p",
133
+ "video.is_depth_map": false,
134
+ "has_audio": false
135
+ }
136
+ }
137
+ }
138
+ ```