Datasets:

Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
aliberts HF staff commited on
Commit
840ba75
1 Parent(s): 5ae037d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +115 -42
README.md CHANGED
@@ -3,47 +3,120 @@ task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
6
- configs:
7
- - config_name: default
8
- data_files:
9
- - split: train
10
- path: data/train-*
11
- dataset_info:
12
- features:
13
- - name: observation.images.image
14
- dtype: video_frame
15
- - name: observation.images.top_image
16
- dtype: video_frame
17
- - name: observation.images.wrist45_image
18
- dtype: video_frame
19
- - name: observation.images.wrist225_image
20
- dtype: video_frame
21
- - name: language_instruction
22
- dtype: string
23
- - name: observation.state
24
- sequence: float32
25
- length: 7
26
- - name: action
27
- sequence: float32
28
- length: 7
29
- - name: timestamp
30
- dtype: float32
31
- - name: episode_index
32
- dtype: int64
33
- - name: frame_index
34
- dtype: int64
35
- - name: next.reward
36
- dtype: float32
37
- - name: next.done
38
- dtype: bool
39
- - name: index
40
- dtype: int64
41
- splits:
42
- - name: train
43
- num_bytes: 16682523
44
- num_examples: 42328
45
- download_size: 3384100
46
- dataset_size: 16682523
47
  ---
48
- This dataset was created using [🤗 LeRobot](https://github.com/huggingface/lerobot).
49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  - robotics
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": 1647,
16
+ "total_frames": 42328,
17
+ "total_tasks": 1,
18
+ "fps": 10,
19
+ "splits": {
20
+ "train": "0:1647"
21
+ },
22
+ "keys": [
23
+ "observation.state",
24
+ "action"
25
+ ],
26
+ "video_keys": [
27
+ "observation.images.top_image",
28
+ "observation.images.wrist225_image",
29
+ "observation.images.wrist45_image",
30
+ "observation.images.image"
31
+ ],
32
+ "image_keys": [],
33
+ "shapes": {
34
+ "observation.state": 8,
35
+ "action": 7,
36
+ "observation.images.top_image": {
37
+ "width": 128,
38
+ "height": 128,
39
+ "channels": 3
40
+ },
41
+ "observation.images.wrist225_image": {
42
+ "width": 128,
43
+ "height": 128,
44
+ "channels": 3
45
+ },
46
+ "observation.images.wrist45_image": {
47
+ "width": 128,
48
+ "height": 128,
49
+ "channels": 3
50
+ },
51
+ "observation.images.image": {
52
+ "width": 128,
53
+ "height": 128,
54
+ "channels": 3
55
+ }
56
+ },
57
+ "names": {
58
+ "observation.state": [
59
+ "motor_0",
60
+ "motor_1",
61
+ "motor_2",
62
+ "motor_3",
63
+ "motor_4",
64
+ "motor_5",
65
+ "motor_6",
66
+ "motor_7"
67
+ ],
68
+ "action": [
69
+ "motor_0",
70
+ "motor_1",
71
+ "motor_2",
72
+ "motor_3",
73
+ "motor_4",
74
+ "motor_5",
75
+ "motor_6"
76
+ ]
77
+ },
78
+ "videos": {
79
+ "videos_path": "videos/{video_key}_episode_{episode_index:06d}.mp4",
80
+ "observation.images.top_image": {
81
+ "video.fps": 10.0,
82
+ "video.width": 128,
83
+ "video.height": 128,
84
+ "video.channels": 3,
85
+ "video.codec": "av1",
86
+ "video.pix_fmt": "yuv420p",
87
+ "video.is_depth_map": false,
88
+ "has_audio": false
89
+ },
90
+ "observation.images.wrist225_image": {
91
+ "video.fps": 10.0,
92
+ "video.width": 128,
93
+ "video.height": 128,
94
+ "video.channels": 3,
95
+ "video.codec": "av1",
96
+ "video.pix_fmt": "yuv420p",
97
+ "video.is_depth_map": false,
98
+ "has_audio": false
99
+ },
100
+ "observation.images.wrist45_image": {
101
+ "video.fps": 10.0,
102
+ "video.width": 128,
103
+ "video.height": 128,
104
+ "video.channels": 3,
105
+ "video.codec": "av1",
106
+ "video.pix_fmt": "yuv420p",
107
+ "video.is_depth_map": false,
108
+ "has_audio": false
109
+ },
110
+ "observation.images.image": {
111
+ "video.fps": 10.0,
112
+ "video.width": 128,
113
+ "video.height": 128,
114
+ "video.channels": 3,
115
+ "video.codec": "av1",
116
+ "video.pix_fmt": "yuv420p",
117
+ "video.is_depth_map": false,
118
+ "has_audio": false
119
+ }
120
+ }
121
+ }
122
+ ```