aiwhisperer commited on
Commit
add6d84
·
verified ·
1 Parent(s): 56d6d12

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +153 -0
README.md ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 2,
30
+ "total_frames": 114,
31
+ "total_tasks": 1,
32
+ "total_videos": 2,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:2"
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.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 21
46
+ ],
47
+ "names": null
48
+ },
49
+ "action": {
50
+ "dtype": "float32",
51
+ "shape": [
52
+ 4
53
+ ],
54
+ "names": [
55
+ "delta_x_ee",
56
+ "delta_y_ee",
57
+ "delta_z_ee",
58
+ "gripper_delta"
59
+ ]
60
+ },
61
+ "next.reward": {
62
+ "dtype": "float32",
63
+ "shape": [
64
+ 1
65
+ ],
66
+ "names": null
67
+ },
68
+ "next.done": {
69
+ "dtype": "bool",
70
+ "shape": [
71
+ 1
72
+ ],
73
+ "names": null
74
+ },
75
+ "complementary_info.discrete_penalty": {
76
+ "dtype": "float32",
77
+ "shape": [
78
+ 1
79
+ ],
80
+ "names": [
81
+ "discrete_penalty"
82
+ ]
83
+ },
84
+ "observation.image.front": {
85
+ "dtype": "video",
86
+ "shape": [
87
+ 480,
88
+ 640,
89
+ 3
90
+ ],
91
+ "names": [
92
+ "channels",
93
+ "height",
94
+ "width"
95
+ ],
96
+ "info": {
97
+ "video.height": 480,
98
+ "video.width": 640,
99
+ "video.codec": "av1",
100
+ "video.pix_fmt": "yuv420p",
101
+ "video.is_depth_map": false,
102
+ "video.fps": 30,
103
+ "video.channels": 3,
104
+ "has_audio": false
105
+ }
106
+ },
107
+ "timestamp": {
108
+ "dtype": "float32",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null
113
+ },
114
+ "frame_index": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ },
121
+ "episode_index": {
122
+ "dtype": "int64",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "index": {
129
+ "dtype": "int64",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "task_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ }
142
+ }
143
+ }
144
+ ```
145
+
146
+
147
+ ## Citation
148
+
149
+ **BibTeX:**
150
+
151
+ ```bibtex
152
+ [More Information Needed]
153
+ ```