e-cagan commited on
Commit
d352621
·
verified ·
1 Parent(s): 92c8ed1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +153 -0
README.md ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - robotics
8
+ - imitation-learning
9
+ - diffusion-policy
10
+ - manipulation
11
+ - fetch
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
+
20
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=e-cagan/diffpick">
21
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
22
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
23
+ </a>
24
+
25
+
26
+ ## Dataset Description
27
+
28
+
29
+
30
+ - **Homepage:** [More Information Needed]
31
+ - **Paper:** [More Information Needed]
32
+ - **License:** apache-2.0
33
+
34
+ ## Dataset Structure
35
+
36
+ [meta/info.json](meta/info.json):
37
+ ```json
38
+ {
39
+ "codebase_version": "v3.0",
40
+ "fps": 25,
41
+ "features": {
42
+ "observation.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 96,
46
+ 96,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channels"
53
+ ],
54
+ "info": {
55
+ "video.height": 96,
56
+ "video.width": 96,
57
+ "video.codec": "av1",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "video.fps": 25,
61
+ "video.channels": 3,
62
+ "has_audio": false
63
+ }
64
+ },
65
+ "observation.state": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 10
69
+ ],
70
+ "names": [
71
+ "gripper_x",
72
+ "gripper_y",
73
+ "gripper_z",
74
+ "finger_left",
75
+ "finger_right",
76
+ "gripper_vx",
77
+ "gripper_vy",
78
+ "gripper_vz",
79
+ "finger_left_v",
80
+ "finger_right_v"
81
+ ]
82
+ },
83
+ "action": {
84
+ "dtype": "float32",
85
+ "shape": [
86
+ 4
87
+ ],
88
+ "names": [
89
+ "dx",
90
+ "dy",
91
+ "dz",
92
+ "gripper_cmd"
93
+ ]
94
+ },
95
+ "timestamp": {
96
+ "dtype": "float32",
97
+ "shape": [
98
+ 1
99
+ ],
100
+ "names": null
101
+ },
102
+ "frame_index": {
103
+ "dtype": "int64",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": null
108
+ },
109
+ "episode_index": {
110
+ "dtype": "int64",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null
115
+ },
116
+ "index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ },
123
+ "task_index": {
124
+ "dtype": "int64",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ }
130
+ },
131
+ "total_episodes": 200,
132
+ "total_frames": 5489,
133
+ "total_tasks": 1,
134
+ "chunks_size": 1000,
135
+ "data_files_size_in_mb": 100,
136
+ "video_files_size_in_mb": 200,
137
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
138
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
139
+ "robot_type": "fetch",
140
+ "splits": {
141
+ "train": "0:200"
142
+ }
143
+ }
144
+ ```
145
+
146
+
147
+ ## Citation
148
+
149
+ **BibTeX:**
150
+
151
+ ```bibtex
152
+ [More Information Needed]
153
+ ```