rdoshi21 commited on
Commit
21edbf2
·
verified ·
1 Parent(s): b630390

Upload README.md with huggingface_hub

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