mateoguaman commited on
Commit
bbe871a
·
verified ·
1 Parent(s): 42482a4

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +167 -0
README.md ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
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
+ It is a LeRobot v3.0 conversion of the [language_table_sim](https://www.tensorflow.org/datasets/catalog/language_table_sim) dataset
15
+ from the [Language Table](https://github.com/google-research/language-table) project (Google Research).
16
+
17
+ The original RLDS data was streamed from `gs://gresearch/robotics/language_table_sim/0.0.1/`,
18
+ converted to LeRobot v2.0 format preserving all fields (action, state, effector target,
19
+ reward, done, instruction), then restructured to v3.0 with lossless video concatenation.
20
+
21
+ ## Dataset Description
22
+
23
+ - **Homepage:** https://github.com/google-research/language-table
24
+ - **Paper:** https://arxiv.org/abs/2210.10997
25
+ - **License:** apache-2.0
26
+
27
+ ## Dataset Structure
28
+
29
+ [meta/info.json](meta/info.json):
30
+ ```json
31
+ {
32
+ "codebase_version": "v3.0",
33
+ "robot_type": "xarm",
34
+ "total_episodes": 181020,
35
+ "total_frames": 4484403,
36
+ "total_tasks": 78627,
37
+ "chunks_size": 1000,
38
+ "fps": 10,
39
+ "splits": {
40
+ "train": "0:181020"
41
+ },
42
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
43
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
44
+ "features": {
45
+ "observation.images.rgb": {
46
+ "dtype": "video",
47
+ "shape": [
48
+ 360,
49
+ 640,
50
+ 3
51
+ ],
52
+ "names": [
53
+ "height",
54
+ "width",
55
+ "channels"
56
+ ],
57
+ "video_info": {
58
+ "video.fps": 10.0,
59
+ "video.height": 360,
60
+ "video.width": 640,
61
+ "video.channels": 3,
62
+ "video.codec": "libx264",
63
+ "video.pix_fmt": "yuv420p",
64
+ "video.is_depth_map": false,
65
+ "has_audio": false
66
+ }
67
+ },
68
+ "observation.state": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 2
72
+ ],
73
+ "names": {
74
+ "motors": [
75
+ "x",
76
+ "y"
77
+ ]
78
+ },
79
+ "fps": 10
80
+ },
81
+ "observation.effector_target_translation": {
82
+ "dtype": "float32",
83
+ "shape": [
84
+ 2
85
+ ],
86
+ "names": {
87
+ "motors": [
88
+ "x",
89
+ "y"
90
+ ]
91
+ },
92
+ "fps": 10
93
+ },
94
+ "action": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 2
98
+ ],
99
+ "names": {
100
+ "motors": [
101
+ "x",
102
+ "y"
103
+ ]
104
+ },
105
+ "fps": 10
106
+ },
107
+ "next.reward": {
108
+ "dtype": "float32",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null,
113
+ "fps": 10
114
+ },
115
+ "next.done": {
116
+ "dtype": "bool",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null,
121
+ "fps": 10
122
+ },
123
+ "timestamp": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null,
129
+ "fps": 10
130
+ },
131
+ "frame_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null,
137
+ "fps": 10
138
+ },
139
+ "episode_index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null,
145
+ "fps": 10
146
+ },
147
+ "index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null,
153
+ "fps": 10
154
+ },
155
+ "task_index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null,
161
+ "fps": 10
162
+ }
163
+ },
164
+ "data_files_size_in_mb": 100,
165
+ "video_files_size_in_mb": 200
166
+ }
167
+ ```