aliberts HF staff commited on
Commit
a99e587
·
verified ·
1 Parent(s): 788b0eb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +80 -6
README.md CHANGED
@@ -3,11 +3,85 @@ task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
6
- configs:
7
- - config_name: default
8
- data_files:
9
- - split: train
10
- path: "data/*.parquet"
11
  ---
12
- This dataset was created using [🤗 LeRobot](https://github.com/huggingface/lerobot).
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 50,
17
+ "total_tasks": 1,
18
+ "fps": 50,
19
+ "splits": {
20
+ "train": "0:50"
21
+ },
22
+ "keys": [
23
+ "observation.state",
24
+ "action"
25
+ ],
26
+ "video_keys": [
27
+ "observation.images.top"
28
+ ],
29
+ "image_keys": [],
30
+ "shapes": {
31
+ "observation.state": 14,
32
+ "action": 14,
33
+ "observation.images.top": {
34
+ "width": 640,
35
+ "height": 480,
36
+ "channels": 3
37
+ }
38
+ },
39
+ "names": {
40
+ "observation.state": [
41
+ "left_waist",
42
+ "left_shoulder",
43
+ "left_elbow",
44
+ "left_forearm_roll",
45
+ "left_wrist_angle",
46
+ "left_wrist_rotate",
47
+ "left_gripper",
48
+ "right_waist",
49
+ "right_shoulder",
50
+ "right_elbow",
51
+ "right_forearm_roll",
52
+ "right_wrist_angle",
53
+ "right_wrist_rotate",
54
+ "right_gripper"
55
+ ],
56
+ "action": [
57
+ "left_waist",
58
+ "left_shoulder",
59
+ "left_elbow",
60
+ "left_forearm_roll",
61
+ "left_wrist_angle",
62
+ "left_wrist_rotate",
63
+ "left_gripper",
64
+ "right_waist",
65
+ "right_shoulder",
66
+ "right_elbow",
67
+ "right_forearm_roll",
68
+ "right_wrist_angle",
69
+ "right_wrist_rotate",
70
+ "right_gripper"
71
+ ]
72
+ },
73
+ "videos": {
74
+ "videos_path": "videos/{video_key}_episode_{episode_index:06d}.mp4",
75
+ "observation.images.top": {
76
+ "video.fps": 50.0,
77
+ "video.width": 640,
78
+ "video.height": 480,
79
+ "video.channels": 3,
80
+ "video.codec": "av1",
81
+ "video.pix_fmt": "yuv420p",
82
+ "video.is_depth_map": false,
83
+ "has_audio": false
84
+ }
85
+ }
86
+ }
87
+ ```