aBochen commited on
Commit
3b79ab0
·
verified ·
1 Parent(s): e0ea71c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +138 -0
README.md ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ Merged from:
15
+ - aBochen/so101_tmp_record_red_50episodes7
16
+ - aBochen/so101_tmp_record_red_50episodes8
17
+ - aBochen/so101_tmp_record_red_50episodes10
18
+
19
+
20
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=aBochen/so101_tmp_record_red_92episodes">
21
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
22
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
23
+ </a>
24
+
25
+
26
+ ## Dataset Description
27
+
28
+ - **License:** apache-2.0
29
+
30
+ ## Dataset Structure
31
+
32
+ [meta/info.json](meta/info.json):
33
+ ```json
34
+ {
35
+ "codebase_version": "v3.0",
36
+ "robot_type": "so_follower",
37
+ "total_episodes": 92,
38
+ "total_frames": 61400,
39
+ "total_tasks": 1,
40
+ "chunks_size": 1000,
41
+ "data_files_size_in_mb": 100,
42
+ "video_files_size_in_mb": 200,
43
+ "fps": 30,
44
+ "splits": {
45
+ "train": "0:92"
46
+ },
47
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
48
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
49
+ "features": {
50
+ "action": {
51
+ "dtype": "float32",
52
+ "names": [
53
+ "shoulder_pan.pos",
54
+ "shoulder_lift.pos",
55
+ "elbow_flex.pos",
56
+ "wrist_flex.pos",
57
+ "wrist_roll.pos",
58
+ "gripper.pos"
59
+ ],
60
+ "shape": [
61
+ 6
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "names": [
67
+ "shoulder_pan.pos",
68
+ "shoulder_lift.pos",
69
+ "elbow_flex.pos",
70
+ "wrist_flex.pos",
71
+ "wrist_roll.pos",
72
+ "gripper.pos"
73
+ ],
74
+ "shape": [
75
+ 6
76
+ ]
77
+ },
78
+ "observation.images.camera1": {
79
+ "dtype": "video",
80
+ "shape": [
81
+ 720,
82
+ 1280,
83
+ 3
84
+ ],
85
+ "names": [
86
+ "height",
87
+ "width",
88
+ "channels"
89
+ ],
90
+ "info": {
91
+ "video.height": 720,
92
+ "video.width": 1280,
93
+ "video.codec": "h264",
94
+ "video.pix_fmt": "yuv420p",
95
+ "video.is_depth_map": false,
96
+ "video.fps": 30,
97
+ "video.channels": 3,
98
+ "has_audio": false
99
+ }
100
+ },
101
+ "timestamp": {
102
+ "dtype": "float32",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null
107
+ },
108
+ "frame_index": {
109
+ "dtype": "int64",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "episode_index": {
116
+ "dtype": "int64",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "task_index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ }
136
+ }
137
+ }
138
+ ```