ccop commited on
Commit
c9f1cd9
·
verified ·
1 Parent(s): c08f3a3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +163 -0
README.md ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - hmnd
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
+ ---
12
+
13
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.0",
29
+ "robot_type": "rainbow",
30
+ "total_episodes": 70,
31
+ "total_frames": 10360,
32
+ "total_tasks": 1,
33
+ "total_videos": 0,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:70"
39
+ },
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
+ "observation.state": {
44
+ "dtype": "float64",
45
+ "shape": [
46
+ 16
47
+ ],
48
+ "names": [
49
+ "left_arm_0",
50
+ "left_arm_1",
51
+ "left_arm_2",
52
+ "left_arm_3",
53
+ "left_arm_4",
54
+ "left_arm_5",
55
+ "left_arm_6",
56
+ "right_arm_0",
57
+ "right_arm_1",
58
+ "right_arm_2",
59
+ "right_arm_3",
60
+ "right_arm_4",
61
+ "right_arm_5",
62
+ "right_arm_6",
63
+ "left_robotiq_85_left_knuckle_joint",
64
+ "right_robotiq_85_left_knuckle_joint"
65
+ ]
66
+ },
67
+ "action": {
68
+ "dtype": "float64",
69
+ "shape": [
70
+ 16
71
+ ],
72
+ "names": [
73
+ "left_arm_0",
74
+ "left_arm_1",
75
+ "left_arm_2",
76
+ "left_arm_3",
77
+ "left_arm_4",
78
+ "left_arm_5",
79
+ "left_arm_6",
80
+ "right_arm_0",
81
+ "right_arm_1",
82
+ "right_arm_2",
83
+ "right_arm_3",
84
+ "right_arm_4",
85
+ "right_arm_5",
86
+ "right_arm_6",
87
+ "left_robotiq_85_left_knuckle_joint",
88
+ "right_robotiq_85_left_knuckle_joint"
89
+ ]
90
+ },
91
+ "observation.image.head": {
92
+ "dtype": "image",
93
+ "shape": [
94
+ 480,
95
+ 848,
96
+ 3
97
+ ],
98
+ "names": [
99
+ "height",
100
+ "width",
101
+ "channels"
102
+ ]
103
+ },
104
+ "observation.image.wrist_right": {
105
+ "dtype": "image",
106
+ "shape": [
107
+ 480,
108
+ 848,
109
+ 3
110
+ ],
111
+ "names": [
112
+ "height",
113
+ "width",
114
+ "channels"
115
+ ]
116
+ },
117
+ "timestamp": {
118
+ "dtype": "float32",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "frame_index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "episode_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "task_index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ }
152
+ }
153
+ }
154
+ ```
155
+
156
+
157
+ ## Citation
158
+
159
+ **BibTeX:**
160
+
161
+ ```bibtex
162
+ [More Information Needed]
163
+ ```