relaxedandcalm commited on
Commit
ada5650
·
verified ·
1 Parent(s): dbaa4cd

Upload README.md with huggingface_hub

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