asawant39 commited on
Commit
32c2491
·
verified ·
1 Parent(s): 4ea1bb7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +150 -0
README.md ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - pusht
8
+ - off-policy
9
+ - bc
10
+ - diffusion
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+ ## Dataset Description
19
+
20
+
21
+
22
+ - **Homepage:** [More Information Needed]
23
+ - **Paper:** [More Information Needed]
24
+ - **License:** apache-2.0
25
+
26
+ ## Dataset Structure
27
+
28
+ [meta/info.json](meta/info.json):
29
+ ```json
30
+ {
31
+ "codebase_version": "v3.0",
32
+ "robot_type": null,
33
+ "total_episodes": 639,
34
+ "total_frames": 119889,
35
+ "total_tasks": 1,
36
+ "chunks_size": 1000,
37
+ "data_files_size_in_mb": 100,
38
+ "video_files_size_in_mb": 200,
39
+ "fps": 10,
40
+ "splits": {
41
+ "train": "0:639"
42
+ },
43
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
44
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
45
+ "features": {
46
+ "observation.image": {
47
+ "dtype": "video",
48
+ "shape": [
49
+ 96,
50
+ 96,
51
+ 3
52
+ ],
53
+ "names": [
54
+ "height",
55
+ "width",
56
+ "channels"
57
+ ],
58
+ "info": {
59
+ "video.height": 96,
60
+ "video.width": 96,
61
+ "video.codec": "h264",
62
+ "video.pix_fmt": "yuv420p",
63
+ "video.is_depth_map": false,
64
+ "video.fps": 10,
65
+ "video.channels": 3,
66
+ "has_audio": false
67
+ }
68
+ },
69
+ "observation.state": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 2
73
+ ],
74
+ "names": null
75
+ },
76
+ "action": {
77
+ "dtype": "float32",
78
+ "shape": [
79
+ 2
80
+ ],
81
+ "names": null
82
+ },
83
+ "next.reward": {
84
+ "dtype": "float32",
85
+ "shape": [
86
+ 1
87
+ ],
88
+ "names": null
89
+ },
90
+ "next.done": {
91
+ "dtype": "bool",
92
+ "shape": [
93
+ 1
94
+ ],
95
+ "names": null
96
+ },
97
+ "next.success": {
98
+ "dtype": "bool",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null
103
+ },
104
+ "timestamp": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "frame_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "episode_index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "index": {
126
+ "dtype": "int64",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "task_index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ }
139
+ }
140
+ }
141
+ ```
142
+
143
+
144
+ ## Citation
145
+
146
+ **BibTeX:**
147
+
148
+ ```bibtex
149
+ [More Information Needed]
150
+ ```