kumarhans commited on
Commit
20ae984
·
verified ·
1 Parent(s): 4f0a0d4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +148 -0
README.md ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - so100
8
+ - tutorial
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+ ## Dataset Description
17
+
18
+
19
+
20
+ - **Homepage:** [More Information Needed]
21
+ - **Paper:** [More Information Needed]
22
+ - **License:** apache-2.0
23
+
24
+ ## Dataset Structure
25
+
26
+ [meta/info.json](meta/info.json):
27
+ ```json
28
+ {
29
+ "codebase_version": "v2.1",
30
+ "robot_type": "so100",
31
+ "total_episodes": 1,
32
+ "total_frames": 377,
33
+ "total_tasks": 1,
34
+ "total_videos": 0,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 30,
38
+ "splits": {
39
+ "train": "0:1"
40
+ },
41
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
42
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
43
+ "features": {
44
+ "observation.images.base_camera": {
45
+ "dtype": "image",
46
+ "shape": [
47
+ 480,
48
+ 640,
49
+ 3
50
+ ],
51
+ "names": [
52
+ "height",
53
+ "width",
54
+ "rgb"
55
+ ]
56
+ },
57
+ "observation.images.hand_camera": {
58
+ "dtype": "image",
59
+ "shape": [
60
+ 480,
61
+ 640,
62
+ 3
63
+ ],
64
+ "names": [
65
+ "height",
66
+ "width",
67
+ "rgb"
68
+ ]
69
+ },
70
+ "observation.state": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 6
74
+ ],
75
+ "names": {
76
+ "motors": [
77
+ "motor_0",
78
+ "motor_1",
79
+ "motor_2",
80
+ "motor_3",
81
+ "motor_4",
82
+ "motor_5"
83
+ ]
84
+ }
85
+ },
86
+ "action": {
87
+ "dtype": "float32",
88
+ "shape": [
89
+ 6
90
+ ],
91
+ "names": {
92
+ "motors": [
93
+ "motor_0",
94
+ "motor_1",
95
+ "motor_2",
96
+ "motor_3",
97
+ "motor_4",
98
+ "motor_5"
99
+ ]
100
+ }
101
+ },
102
+ "timestamp": {
103
+ "dtype": "float32",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": null
108
+ },
109
+ "frame_index": {
110
+ "dtype": "int64",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null
115
+ },
116
+ "episode_index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ },
123
+ "index": {
124
+ "dtype": "int64",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "task_index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ }
137
+ }
138
+ }
139
+ ```
140
+
141
+
142
+ ## Citation
143
+
144
+ **BibTeX:**
145
+
146
+ ```bibtex
147
+ [More Information Needed]
148
+ ```