nepyope commited on
Commit
cb7bd46
·
verified ·
1 Parent(s): 5da210c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +159 -0
README.md ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "hope_jr_hand",
29
+ "total_episodes": 1,
30
+ "total_frames": 150,
31
+ "total_tasks": 1,
32
+ "total_videos": 1,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:1"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 16
46
+ ],
47
+ "names": [
48
+ "thumb_cmc.pos",
49
+ "thumb_mcp.pos",
50
+ "thumb_pip.pos",
51
+ "thumb_dip.pos",
52
+ "index_radial_flexor.pos",
53
+ "index_ulnar_flexor.pos",
54
+ "index_pip_dip.pos",
55
+ "middle_radial_flexor.pos",
56
+ "middle_ulnar_flexor.pos",
57
+ "middle_pip_dip.pos",
58
+ "ring_radial_flexor.pos",
59
+ "ring_ulnar_flexor.pos",
60
+ "ring_pip_dip.pos",
61
+ "pinky_radial_flexor.pos",
62
+ "pinky_ulnar_flexor.pos",
63
+ "pinky_pip_dip.pos"
64
+ ]
65
+ },
66
+ "observation.state": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 16
70
+ ],
71
+ "names": [
72
+ "thumb_cmc.pos",
73
+ "thumb_mcp.pos",
74
+ "thumb_pip.pos",
75
+ "thumb_dip.pos",
76
+ "index_radial_flexor.pos",
77
+ "index_ulnar_flexor.pos",
78
+ "index_pip_dip.pos",
79
+ "middle_radial_flexor.pos",
80
+ "middle_ulnar_flexor.pos",
81
+ "middle_pip_dip.pos",
82
+ "ring_radial_flexor.pos",
83
+ "ring_ulnar_flexor.pos",
84
+ "ring_pip_dip.pos",
85
+ "pinky_radial_flexor.pos",
86
+ "pinky_ulnar_flexor.pos",
87
+ "pinky_pip_dip.pos"
88
+ ]
89
+ },
90
+ "observation.images.main": {
91
+ "dtype": "video",
92
+ "shape": [
93
+ 480,
94
+ 640,
95
+ 3
96
+ ],
97
+ "names": [
98
+ "height",
99
+ "width",
100
+ "channels"
101
+ ],
102
+ "info": {
103
+ "video.height": 480,
104
+ "video.width": 640,
105
+ "video.codec": "av1",
106
+ "video.pix_fmt": "yuv420p",
107
+ "video.is_depth_map": false,
108
+ "video.fps": 30,
109
+ "video.channels": 3,
110
+ "has_audio": false
111
+ }
112
+ },
113
+ "timestamp": {
114
+ "dtype": "float32",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null
119
+ },
120
+ "frame_index": {
121
+ "dtype": "int64",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "episode_index": {
128
+ "dtype": "int64",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "task_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ }
148
+ }
149
+ }
150
+ ```
151
+
152
+
153
+ ## Citation
154
+
155
+ **BibTeX:**
156
+
157
+ ```bibtex
158
+ [More Information Needed]
159
+ ```