enpeicv commited on
Commit
f34853b
·
verified ·
1 Parent(s): 5727d1e

Upload README.md with huggingface_hub

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