Tavish9 commited on
Commit
e7907e0
·
verified ·
1 Parent(s): f6c085b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +174 -0
README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - LeRobot
8
+ - viola
9
+ - rlds
10
+ - openx
11
+ - franka
12
+ configs:
13
+ - config_name: default
14
+ data_files: data/*/*.parquet
15
+ ---
16
+
17
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
18
+
19
+ ## Dataset Description
20
+
21
+
22
+
23
+ - **Homepage:** [More Information Needed]
24
+ - **Paper:** [More Information Needed]
25
+ - **License:** apache-2.0
26
+
27
+ ## Dataset Structure
28
+
29
+ [meta/info.json](meta/info.json):
30
+ ```json
31
+ {
32
+ "codebase_version": "v2.0",
33
+ "robot_type": "franka",
34
+ "total_episodes": 135,
35
+ "total_frames": 68913,
36
+ "total_tasks": 3,
37
+ "total_videos": 270,
38
+ "total_chunks": 1,
39
+ "chunks_size": 1000,
40
+ "fps": 20,
41
+ "splits": {
42
+ "train": "0:135"
43
+ },
44
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
45
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
46
+ "features": {
47
+ "observation.images.eye_in_hand_rgb": {
48
+ "dtype": "video",
49
+ "shape": [
50
+ 224,
51
+ 224,
52
+ 3
53
+ ],
54
+ "names": [
55
+ "height",
56
+ "width",
57
+ "rgb"
58
+ ],
59
+ "info": {
60
+ "video.fps": 20.0,
61
+ "video.height": 224,
62
+ "video.width": 224,
63
+ "video.channels": 3,
64
+ "video.codec": "av1",
65
+ "video.pix_fmt": "yuv420p",
66
+ "video.is_depth_map": false,
67
+ "has_audio": false
68
+ }
69
+ },
70
+ "observation.images.agentview_rgb": {
71
+ "dtype": "video",
72
+ "shape": [
73
+ 224,
74
+ 224,
75
+ 3
76
+ ],
77
+ "names": [
78
+ "height",
79
+ "width",
80
+ "rgb"
81
+ ],
82
+ "info": {
83
+ "video.fps": 20.0,
84
+ "video.height": 224,
85
+ "video.width": 224,
86
+ "video.channels": 3,
87
+ "video.codec": "av1",
88
+ "video.pix_fmt": "yuv420p",
89
+ "video.is_depth_map": false,
90
+ "has_audio": false
91
+ }
92
+ },
93
+ "observation.state": {
94
+ "dtype": "float32",
95
+ "shape": [
96
+ 8
97
+ ],
98
+ "names": {
99
+ "motors": [
100
+ "motor_0",
101
+ "motor_1",
102
+ "motor_2",
103
+ "motor_3",
104
+ "motor_4",
105
+ "motor_5",
106
+ "motor_6",
107
+ "motor_7"
108
+ ]
109
+ }
110
+ },
111
+ "action": {
112
+ "dtype": "float32",
113
+ "shape": [
114
+ 7
115
+ ],
116
+ "names": {
117
+ "motors": [
118
+ "x",
119
+ "y",
120
+ "z",
121
+ "roll",
122
+ "pitch",
123
+ "yaw",
124
+ "gripper"
125
+ ]
126
+ }
127
+ },
128
+ "timestamp": {
129
+ "dtype": "float32",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "frame_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "episode_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "task_index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ }
163
+ }
164
+ }
165
+ ```
166
+
167
+
168
+ ## Citation
169
+
170
+ **BibTeX:**
171
+
172
+ ```bibtex
173
+ [More Information Needed]
174
+ ```