gauravpradeep commited on
Commit
6158a1f
·
verified ·
1 Parent(s): 2ea8691

Upload README.md with huggingface_hub

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