aliberts HF staff commited on
Commit
bb70419
1 Parent(s): 229c0be

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +137 -46
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": 1355,
16
  "total_frames": 67750,
@@ -22,52 +36,129 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:1355"
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": 4,
36
- "observation.images.image": {
37
- "width": 224,
38
- "height": 224,
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
- ]
58
- },
59
- "videos": {
60
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
61
  "observation.images.image": {
62
- "video.fps": 5.0,
63
- "video.width": 224,
64
- "video.height": 224,
65
- "video.channels": 3,
66
- "video.codec": "av1",
67
- "video.pix_fmt": "yuv420p",
68
- "video.is_depth_map": false,
69
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
71
  }
72
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  ```
 
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:** https://owmcorl.github.io/#
19
+ - **Paper:** https://arxiv.org/abs/2310.16029
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": 1355,
30
  "total_frames": 67750,
 
36
  "splits": {
37
  "train": "0:1355"
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
+ 224,
46
+ 224,
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
+ 4
90
+ ],
91
+ "names": {
92
+ "motors": [
93
+ "motor_0",
94
+ "motor_1",
95
+ "motor_2",
96
+ "motor_3"
97
+ ]
98
+ }
99
+ },
100
+ "timestamp": {
101
+ "dtype": "float32",
102
+ "shape": [
103
+ 1
104
+ ],
105
+ "names": null
106
+ },
107
+ "episode_index": {
108
+ "dtype": "int64",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null
113
+ },
114
+ "frame_index": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ },
121
+ "next.reward": {
122
+ "dtype": "float32",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "next.done": {
129
+ "dtype": "bool",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "task_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
  }
149
  }
150
  }
151
+ ```
152
+
153
+
154
+ ## Citation
155
+
156
+ **BibTeX:**
157
+
158
+ ```bibtex
159
+ @preprint{Feng2023Finetuning,
160
+ title={Finetuning Offline World Models in the Real World},
161
+ author={Yunhai Feng, Nicklas Hansen, Ziyan Xiong, Chandramouli Rajagopalan, Xiaolong Wang},
162
+ year={2023}
163
+ }
164
  ```