lirislab commited on
Commit
f15d7bb
·
verified ·
1 Parent(s): e3bf77a

Upload README.md with huggingface_hub

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