jmercat commited on
Commit
f65843c
·
verified ·
1 Parent(s): ba05744

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +128 -0
README.md ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "so100",
29
+ "total_episodes": 1,
30
+ "total_frames": 638,
31
+ "total_tasks": 1,
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
+ "main_shoulder_pan",
47
+ "main_shoulder_lift",
48
+ "main_elbow_flex",
49
+ "main_wrist_flex",
50
+ "main_wrist_roll",
51
+ "main_gripper"
52
+ ]
53
+ },
54
+ "observation.state": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 6
58
+ ],
59
+ "names": [
60
+ "main_shoulder_pan",
61
+ "main_shoulder_lift",
62
+ "main_elbow_flex",
63
+ "main_wrist_flex",
64
+ "main_wrist_roll",
65
+ "main_gripper"
66
+ ]
67
+ },
68
+ "observation.images.arducam": {
69
+ "dtype": "video",
70
+ "shape": [
71
+ 480,
72
+ 640,
73
+ 3
74
+ ],
75
+ "names": [
76
+ "height",
77
+ "width",
78
+ "channels"
79
+ ],
80
+ "info": null
81
+ },
82
+ "timestamp": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 1
86
+ ],
87
+ "names": null
88
+ },
89
+ "frame_index": {
90
+ "dtype": "int64",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": null
95
+ },
96
+ "episode_index": {
97
+ "dtype": "int64",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": null
102
+ },
103
+ "index": {
104
+ "dtype": "int64",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null
109
+ },
110
+ "task_index": {
111
+ "dtype": "int64",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ }
117
+ }
118
+ }
119
+ ```
120
+
121
+
122
+ ## Citation
123
+
124
+ **BibTeX:**
125
+
126
+ ```bibtex
127
+ [More Information Needed]
128
+ ```