Sendera commited on
Commit
8326c58
·
verified ·
1 Parent(s): 0ae8924

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +170 -0
README.md ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - ctr
8
+ - test
9
+ - readback
10
+ configs:
11
+ - config_name: default
12
+ data_files: data/*/*.parquet
13
+ ---
14
+
15
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
16
+
17
+
18
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=Sendera/test_readback">
19
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
20
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
21
+ </a>
22
+
23
+
24
+ ## Dataset Description
25
+
26
+
27
+
28
+ - **Homepage:** [More Information Needed]
29
+ - **Paper:** [More Information Needed]
30
+ - **License:** apache-2.0
31
+
32
+ ## Dataset Structure
33
+
34
+ [meta/info.json](meta/info.json):
35
+ ```json
36
+ {
37
+ "codebase_version": "v3.0",
38
+ "robot_type": "ctr_robot",
39
+ "total_episodes": 1,
40
+ "total_frames": 575,
41
+ "total_tasks": 1,
42
+ "chunks_size": 1000,
43
+ "data_files_size_in_mb": 100,
44
+ "video_files_size_in_mb": 200,
45
+ "fps": 30,
46
+ "splits": {
47
+ "train": "0:1"
48
+ },
49
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
50
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
51
+ "features": {
52
+ "action": {
53
+ "dtype": "float32",
54
+ "names": [
55
+ "dx",
56
+ "dy",
57
+ "dz",
58
+ "dr",
59
+ "gripper_cmd"
60
+ ],
61
+ "shape": [
62
+ 5
63
+ ]
64
+ },
65
+ "observation.state": {
66
+ "dtype": "float32",
67
+ "names": [
68
+ "fk_x",
69
+ "fk_y",
70
+ "fk_z",
71
+ "fk_r",
72
+ "gripper_state"
73
+ ],
74
+ "shape": [
75
+ 5
76
+ ]
77
+ },
78
+ "observation.images.Cam1_global": {
79
+ "dtype": "video",
80
+ "shape": [
81
+ 960,
82
+ 960,
83
+ 3
84
+ ],
85
+ "names": [
86
+ "height",
87
+ "width",
88
+ "channels"
89
+ ],
90
+ "info": {
91
+ "video.height": 960,
92
+ "video.width": 960,
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
+ "observation.images.Cam3_global": {
102
+ "dtype": "video",
103
+ "shape": [
104
+ 960,
105
+ 960,
106
+ 3
107
+ ],
108
+ "names": [
109
+ "height",
110
+ "width",
111
+ "channels"
112
+ ],
113
+ "info": {
114
+ "video.height": 960,
115
+ "video.width": 960,
116
+ "video.codec": "h264",
117
+ "video.pix_fmt": "yuv420p",
118
+ "video.is_depth_map": false,
119
+ "video.fps": 30,
120
+ "video.channels": 3,
121
+ "has_audio": false
122
+ }
123
+ },
124
+ "timestamp": {
125
+ "dtype": "float32",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "frame_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "episode_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "task_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ }
159
+ }
160
+ }
161
+ ```
162
+
163
+
164
+ ## Citation
165
+
166
+ **BibTeX:**
167
+
168
+ ```bibtex
169
+ [More Information Needed]
170
+ ```