ccwatson commited on
Commit
76e8ec8
·
verified ·
1 Parent(s): a45c9c7

Upload README.md with huggingface_hub

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