bensprenger commited on
Commit
b740dbe
·
verified ·
1 Parent(s): 639d1b7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +124 -0
README.md ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": null,
29
+ "total_episodes": 1000,
30
+ "total_frames": 91181,
31
+ "total_tasks": 1000,
32
+ "total_videos": 1000,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:1000"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 4
46
+ ]
47
+ },
48
+ "observation.state": {
49
+ "dtype": "float32",
50
+ "shape": [
51
+ 20
52
+ ]
53
+ },
54
+ "next.success": {
55
+ "dtype": "bool",
56
+ "shape": [
57
+ 1
58
+ ]
59
+ },
60
+ "observation.images.camera": {
61
+ "dtype": "video",
62
+ "shape": [
63
+ 3,
64
+ 480,
65
+ 640
66
+ ],
67
+ "info": {
68
+ "video.fps": 30.0,
69
+ "video.height": 480,
70
+ "video.width": 640,
71
+ "video.channels": 3,
72
+ "video.codec": "av1",
73
+ "video.pix_fmt": "yuv420p",
74
+ "video.is_depth_map": false,
75
+ "has_audio": false
76
+ }
77
+ },
78
+ "timestamp": {
79
+ "dtype": "float32",
80
+ "shape": [
81
+ 1
82
+ ],
83
+ "names": null
84
+ },
85
+ "frame_index": {
86
+ "dtype": "int64",
87
+ "shape": [
88
+ 1
89
+ ],
90
+ "names": null
91
+ },
92
+ "episode_index": {
93
+ "dtype": "int64",
94
+ "shape": [
95
+ 1
96
+ ],
97
+ "names": null
98
+ },
99
+ "index": {
100
+ "dtype": "int64",
101
+ "shape": [
102
+ 1
103
+ ],
104
+ "names": null
105
+ },
106
+ "task_index": {
107
+ "dtype": "int64",
108
+ "shape": [
109
+ 1
110
+ ],
111
+ "names": null
112
+ }
113
+ }
114
+ }
115
+ ```
116
+
117
+
118
+ ## Citation
119
+
120
+ **BibTeX:**
121
+
122
+ ```bibtex
123
+ [More Information Needed]
124
+ ```