JennyWWW commited on
Commit
ef64cf1
·
verified ·
1 Parent(s): 9d36503

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +170 -0
README.md ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
+ ```json
26
+ {
27
+ "codebase_version": "v3.0",
28
+ "robot_type": "lerobot_splatsim",
29
+ "total_episodes": 1,
30
+ "total_frames": 10,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 50,
36
+ "splits": {
37
+ "train": "0:1"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "observation.images.base_rgb_letterbox": {
43
+ "dtype": "image",
44
+ "shape": [
45
+ 3,
46
+ 224,
47
+ 224
48
+ ],
49
+ "names": [
50
+ "channels",
51
+ "height",
52
+ "width"
53
+ ]
54
+ },
55
+ "observation.images.base_rgb_stretch": {
56
+ "dtype": "image",
57
+ "shape": [
58
+ 3,
59
+ 224,
60
+ 224
61
+ ],
62
+ "names": [
63
+ "channels",
64
+ "height",
65
+ "width"
66
+ ]
67
+ },
68
+ "observation.images.wrist_rgb_letterbox": {
69
+ "dtype": "image",
70
+ "shape": [
71
+ 3,
72
+ 224,
73
+ 224
74
+ ],
75
+ "names": [
76
+ "channels",
77
+ "height",
78
+ "width"
79
+ ]
80
+ },
81
+ "observation.images.wrist_rgb_stretch": {
82
+ "dtype": "image",
83
+ "shape": [
84
+ 3,
85
+ 224,
86
+ 224
87
+ ],
88
+ "names": [
89
+ "channels",
90
+ "height",
91
+ "width"
92
+ ]
93
+ },
94
+ "observation.state": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 7
98
+ ],
99
+ "names": [
100
+ "joint_1",
101
+ "joint_2",
102
+ "joint_3",
103
+ "joint_4",
104
+ "joint_5",
105
+ "joint_6",
106
+ "gripper"
107
+ ]
108
+ },
109
+ "action": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 7
113
+ ],
114
+ "names": [
115
+ "joint_1",
116
+ "joint_2",
117
+ "joint_3",
118
+ "joint_4",
119
+ "joint_5",
120
+ "joint_6",
121
+ "gripper"
122
+ ]
123
+ },
124
+ "timestamp": {
125
+ "dtype": "float32",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "frame_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "episode_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "task_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ }
159
+ }
160
+ }
161
+ ```
162
+
163
+
164
+ ## Citation
165
+
166
+ **BibTeX:**
167
+
168
+ ```bibtex
169
+ [More Information Needed]
170
+ ```