Fooping commited on
Commit
74cdb41
·
verified ·
1 Parent(s): 578c502

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +134 -0
README.md ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": "dmc_robo",
29
+ "total_episodes": 3,
30
+ "total_frames": 195,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:3"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "names": [
45
+ "v_l",
46
+ "v_r"
47
+ ],
48
+ "shape": [
49
+ 2
50
+ ]
51
+ },
52
+ "observation.state": {
53
+ "dtype": "float32",
54
+ "names": [
55
+ "imu.gyro.x",
56
+ "imu.gyro.y",
57
+ "imu.gyro.z",
58
+ "motor.cmd_v_l",
59
+ "motor.cmd_v_r"
60
+ ],
61
+ "shape": [
62
+ 5
63
+ ]
64
+ },
65
+ "observation.images.camera": {
66
+ "dtype": "video",
67
+ "shape": [
68
+ 480,
69
+ 640,
70
+ 3
71
+ ],
72
+ "names": [
73
+ "height",
74
+ "width",
75
+ "channels"
76
+ ],
77
+ "info": {
78
+ "video.height": 480,
79
+ "video.width": 640,
80
+ "video.codec": "av1",
81
+ "video.pix_fmt": "yuv420p",
82
+ "video.is_depth_map": false,
83
+ "video.fps": 10,
84
+ "video.channels": 3,
85
+ "has_audio": false
86
+ }
87
+ },
88
+ "timestamp": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 1
92
+ ],
93
+ "names": null
94
+ },
95
+ "frame_index": {
96
+ "dtype": "int64",
97
+ "shape": [
98
+ 1
99
+ ],
100
+ "names": null
101
+ },
102
+ "episode_index": {
103
+ "dtype": "int64",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": null
108
+ },
109
+ "index": {
110
+ "dtype": "int64",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null
115
+ },
116
+ "task_index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ }
123
+ }
124
+ }
125
+ ```
126
+
127
+
128
+ ## Citation
129
+
130
+ **BibTeX:**
131
+
132
+ ```bibtex
133
+ [More Information Needed]
134
+ ```