aliberts HF staff commited on
Commit
4428e18
1 Parent(s): c19d722

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +83 -1
README.md CHANGED
@@ -4,5 +4,87 @@ task_categories:
4
  tags:
5
  - LeRobot
6
  ---
7
- This dataset was created using [🤗 LeRobot](https://github.com/huggingface/lerobot).
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  tags:
5
  - LeRobot
6
  ---
7
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
8
 
9
+ [meta/info.json](meta/info.json)
10
+ ```json
11
+ {
12
+ "codebase_version": "v2.0",
13
+ "data_path": "data/train-{episode_index:05d}-of-{total_episodes:05d}.parquet",
14
+ "robot_type": "unknown",
15
+ "total_episodes": 240,
16
+ "total_frames": 353094,
17
+ "total_tasks": 4,
18
+ "fps": 20,
19
+ "splits": {
20
+ "train": "0:240"
21
+ },
22
+ "keys": [
23
+ "observation.state",
24
+ "action"
25
+ ],
26
+ "video_keys": [
27
+ "observation.images.wrist_image",
28
+ "observation.images.image"
29
+ ],
30
+ "image_keys": [],
31
+ "shapes": {
32
+ "observation.state": 8,
33
+ "action": 7,
34
+ "observation.images.wrist_image": {
35
+ "width": 128,
36
+ "height": 128,
37
+ "channels": 3
38
+ },
39
+ "observation.images.image": {
40
+ "width": 128,
41
+ "height": 128,
42
+ "channels": 3
43
+ }
44
+ },
45
+ "names": {
46
+ "observation.state": [
47
+ "motor_0",
48
+ "motor_1",
49
+ "motor_2",
50
+ "motor_3",
51
+ "motor_4",
52
+ "motor_5",
53
+ "motor_6",
54
+ "motor_7"
55
+ ],
56
+ "action": [
57
+ "motor_0",
58
+ "motor_1",
59
+ "motor_2",
60
+ "motor_3",
61
+ "motor_4",
62
+ "motor_5",
63
+ "motor_6"
64
+ ]
65
+ },
66
+ "videos": {
67
+ "videos_path": "videos/{video_key}_episode_{episode_index:06d}.mp4",
68
+ "observation.images.wrist_image": {
69
+ "video.fps": 20.0,
70
+ "video.width": 128,
71
+ "video.height": 128,
72
+ "video.channels": 3,
73
+ "video.codec": "av1",
74
+ "video.pix_fmt": "yuv420p",
75
+ "video.is_depth_map": false,
76
+ "has_audio": false
77
+ },
78
+ "observation.images.image": {
79
+ "video.fps": 20.0,
80
+ "video.width": 128,
81
+ "video.height": 128,
82
+ "video.channels": 3,
83
+ "video.codec": "av1",
84
+ "video.pix_fmt": "yuv420p",
85
+ "video.is_depth_map": false,
86
+ "has_audio": false
87
+ }
88
+ }
89
+ }
90
+ ```