dureduck commited on
Commit
ed6e2bc
·
verified ·
1 Parent(s): fe308ec

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +157 -0
README.md ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": "panda",
29
+ "total_episodes": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "total_videos": 0,
33
+ "total_chunks": 0,
34
+ "chunks_size": 1000,
35
+ "fps": 50,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
38
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
39
+ "features": {
40
+ "observation.images.exterior": {
41
+ "dtype": "video",
42
+ "shape": [
43
+ 240,
44
+ 320,
45
+ 3
46
+ ],
47
+ "names": [
48
+ "height",
49
+ "width",
50
+ "channel"
51
+ ]
52
+ },
53
+ "observation.images.wristcam": {
54
+ "dtype": "video",
55
+ "shape": [
56
+ 240,
57
+ 320,
58
+ 3
59
+ ],
60
+ "names": [
61
+ "height",
62
+ "width",
63
+ "channel"
64
+ ]
65
+ },
66
+ "observation.ee_pose_state": {
67
+ "dtype": "float",
68
+ "shape": [
69
+ 7
70
+ ],
71
+ "names": [
72
+ "state"
73
+ ]
74
+ },
75
+ "observation.gripper_position": {
76
+ "dtype": "float",
77
+ "shape": [
78
+ 1
79
+ ],
80
+ "names": [
81
+ "gripper_position"
82
+ ]
83
+ },
84
+ "actions": {
85
+ "dtype": "float",
86
+ "shape": [
87
+ 8
88
+ ],
89
+ "names": [
90
+ "actions"
91
+ ]
92
+ },
93
+ "observation.velocity": {
94
+ "dtype": "float",
95
+ "shape": [
96
+ 7
97
+ ],
98
+ "names": [
99
+ "velocity"
100
+ ]
101
+ },
102
+ "prompt": {
103
+ "dtype": "string",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": [
108
+ "prompt"
109
+ ]
110
+ },
111
+ "timestamp": {
112
+ "dtype": "float32",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "frame_index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "episode_index": {
126
+ "dtype": "int64",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "task_index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ }
146
+ }
147
+ }
148
+ ```
149
+
150
+
151
+ ## Citation
152
+
153
+ **BibTeX:**
154
+
155
+ ```bibtex
156
+ [More Information Needed]
157
+ ```