rdoshi21 commited on
Commit
384f6cb
·
verified ·
1 Parent(s): 1247636

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +161 -0
README.md ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "kinova-arx",
29
+ "total_episodes": 56,
30
+ "total_frames": 22716,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "fps": 10,
34
+ "splits": {
35
+ "train": "0:56"
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
+ 480,
44
+ 480,
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
+ 480,
58
+ 480,
59
+ 3
60
+ ],
61
+ "names": [
62
+ "height",
63
+ "width",
64
+ "channel"
65
+ ],
66
+ "fps": 10
67
+ },
68
+ "full_state": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 15
72
+ ],
73
+ "names": [
74
+ "full_state"
75
+ ],
76
+ "fps": 10
77
+ },
78
+ "state": {
79
+ "dtype": "float32",
80
+ "shape": [
81
+ 8
82
+ ],
83
+ "names": [
84
+ "state"
85
+ ],
86
+ "fps": 10
87
+ },
88
+ "actions": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 8
92
+ ],
93
+ "names": [
94
+ "actions"
95
+ ],
96
+ "fps": 10
97
+ },
98
+ "prompt": {
99
+ "dtype": "string",
100
+ "names": [
101
+ "prompt"
102
+ ],
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "fps": 10
107
+ },
108
+ "timestamp": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null,
114
+ "fps": 10
115
+ },
116
+ "frame_index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null,
122
+ "fps": 10
123
+ },
124
+ "episode_index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null,
130
+ "fps": 10
131
+ },
132
+ "index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null,
138
+ "fps": 10
139
+ },
140
+ "task_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null,
146
+ "fps": 10
147
+ }
148
+ },
149
+ "data_files_size_in_mb": 100,
150
+ "video_files_size_in_mb": 200
151
+ }
152
+ ```
153
+
154
+
155
+ ## Citation
156
+
157
+ **BibTeX:**
158
+
159
+ ```bibtex
160
+ [More Information Needed]
161
+ ```