aliberts HF staff commited on
Commit
343dbbd
1 Parent(s): f0a2fa4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +142 -50
README.md CHANGED
@@ -1,16 +1,30 @@
1
  ---
 
2
  task_categories:
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/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
14
  "robot_type": "unknown",
15
  "total_episodes": 80,
16
  "total_frames": 11522,
@@ -22,56 +36,134 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:80"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "action"
28
- ],
29
- "video_keys": [
30
- "observation.images.image"
31
- ],
32
- "image_keys": [],
33
- "shapes": {
34
- "observation.state": 7,
35
- "action": 8,
36
- "observation.images.image": {
37
- "width": 128,
38
- "height": 128,
39
- "channels": 3
40
- }
41
- },
42
- "names": {
43
- "observation.state": [
44
- "motor_0",
45
- "motor_1",
46
- "motor_2",
47
- "motor_3",
48
- "motor_4",
49
- "motor_5",
50
- "motor_6"
51
- ],
52
- "action": [
53
- "motor_0",
54
- "motor_1",
55
- "motor_2",
56
- "motor_3",
57
- "motor_4",
58
- "motor_5",
59
- "motor_6",
60
- "motor_7"
61
- ]
62
- },
63
- "videos": {
64
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
65
  "observation.images.image": {
66
- "video.fps": 5.0,
67
- "video.width": 128,
68
- "video.height": 128,
69
- "video.channels": 3,
70
- "video.codec": "av1",
71
- "video.pix_fmt": "yuv420p",
72
- "video.is_depth_map": false,
73
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
  }
76
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  ```
 
1
  ---
2
+ license: mit
3
  task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
10
  ---
11
+
12
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
 
14
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** mit
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
  "codebase_version": "v2.0",
 
28
  "robot_type": "unknown",
29
  "total_episodes": 80,
30
  "total_frames": 11522,
 
36
  "splits": {
37
  "train": "0:80"
38
  },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  "observation.images.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 128,
46
+ 128,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 5.0,
56
+ "video.codec": "av1",
57
+ "video.pix_fmt": "yuv420p",
58
+ "video.is_depth_map": false,
59
+ "has_audio": false
60
+ }
61
+ },
62
+ "language_instruction": {
63
+ "dtype": "string",
64
+ "shape": [
65
+ 1
66
+ ],
67
+ "names": null
68
+ },
69
+ "observation.state": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 7
73
+ ],
74
+ "names": {
75
+ "motors": [
76
+ "motor_0",
77
+ "motor_1",
78
+ "motor_2",
79
+ "motor_3",
80
+ "motor_4",
81
+ "motor_5",
82
+ "motor_6"
83
+ ]
84
+ }
85
+ },
86
+ "action": {
87
+ "dtype": "float32",
88
+ "shape": [
89
+ 8
90
+ ],
91
+ "names": {
92
+ "motors": [
93
+ "motor_0",
94
+ "motor_1",
95
+ "motor_2",
96
+ "motor_3",
97
+ "motor_4",
98
+ "motor_5",
99
+ "motor_6",
100
+ "motor_7"
101
+ ]
102
+ }
103
+ },
104
+ "timestamp": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "episode_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "frame_index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "next.reward": {
126
+ "dtype": "float32",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "next.done": {
133
+ "dtype": "bool",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ },
146
+ "task_index": {
147
+ "dtype": "int64",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null
152
  }
153
  }
154
  }
155
+ ```
156
+
157
+
158
+ ## Citation
159
+
160
+ **BibTeX:**
161
+
162
+ ```bibtex
163
+ @misc{oh2023pr2utokyodatasets,
164
+ author={Jihoon Oh and Naoaki Kanazawa and Kento Kawaharazuka},
165
+ title={X-Embodiment U-Tokyo PR2 Datasets},
166
+ year={2023},
167
+ url={https://github.com/ojh6404/rlds_dataset_builder},
168
+ }
169
  ```