RonanMcGovern commited on
Commit
263c12b
·
verified ·
1 Parent(s): 6670238

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +140 -0
README.md ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "so101_follower",
29
+ "total_episodes": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "total_videos": 0,
33
+ "total_chunks": 0,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
38
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
39
+ "features": {
40
+ "action": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 6
44
+ ],
45
+ "names": [
46
+ "shoulder_pan.pos",
47
+ "shoulder_lift.pos",
48
+ "elbow_flex.pos",
49
+ "wrist_flex.pos",
50
+ "wrist_roll.pos",
51
+ "gripper.pos"
52
+ ]
53
+ },
54
+ "observation.state": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 6
58
+ ],
59
+ "names": [
60
+ "shoulder_pan.pos",
61
+ "shoulder_lift.pos",
62
+ "elbow_flex.pos",
63
+ "wrist_flex.pos",
64
+ "wrist_roll.pos",
65
+ "gripper.pos"
66
+ ]
67
+ },
68
+ "observation.images.wrist": {
69
+ "dtype": "video",
70
+ "shape": [
71
+ 480,
72
+ 640,
73
+ 3
74
+ ],
75
+ "names": [
76
+ "height",
77
+ "width",
78
+ "channels"
79
+ ]
80
+ },
81
+ "observation.images.front": {
82
+ "dtype": "video",
83
+ "shape": [
84
+ 480,
85
+ 640,
86
+ 3
87
+ ],
88
+ "names": [
89
+ "height",
90
+ "width",
91
+ "channels"
92
+ ]
93
+ },
94
+ "timestamp": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "names": null
100
+ },
101
+ "frame_index": {
102
+ "dtype": "int64",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null
107
+ },
108
+ "episode_index": {
109
+ "dtype": "int64",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "index": {
116
+ "dtype": "int64",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "task_index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ }
129
+ }
130
+ }
131
+ ```
132
+
133
+
134
+ ## Citation
135
+
136
+ **BibTeX:**
137
+
138
+ ```bibtex
139
+ [More Information Needed]
140
+ ```