lr-2002 commited on
Commit
11ce796
·
verified ·
1 Parent(s): ad44c4d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +159 -0
README.md ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": "dataarm",
29
+ "total_episodes": 41,
30
+ "total_frames": 8711,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "fps": 30,
34
+ "splits": {
35
+ "train": "0:41"
36
+ },
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "episode_index": {
41
+ "dtype": "int64",
42
+ "shape": [
43
+ 1
44
+ ],
45
+ "names": null,
46
+ "fps": 30.0
47
+ },
48
+ "frame_index": {
49
+ "dtype": "int64",
50
+ "shape": [
51
+ 1
52
+ ],
53
+ "names": null,
54
+ "fps": 30.0
55
+ },
56
+ "timestamp": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": null,
62
+ "fps": 30.0
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 9
68
+ ],
69
+ "names": {
70
+ "motors": [
71
+ "joint_0",
72
+ "joint_1",
73
+ "joint_2",
74
+ "joint_3",
75
+ "joint_4",
76
+ "joint_5",
77
+ "joint_6",
78
+ "joint_7",
79
+ "gripper"
80
+ ]
81
+ },
82
+ "fps": 30.0
83
+ },
84
+ "action": {
85
+ "dtype": "float32",
86
+ "shape": [
87
+ 9
88
+ ],
89
+ "names": {
90
+ "motors": [
91
+ "joint_0",
92
+ "joint_1",
93
+ "joint_2",
94
+ "joint_3",
95
+ "joint_4",
96
+ "joint_5",
97
+ "joint_6",
98
+ "joint_7",
99
+ "gripper"
100
+ ]
101
+ },
102
+ "fps": 30.0
103
+ },
104
+ "task_index": {
105
+ "dtype": "int64",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null,
110
+ "fps": 30.0
111
+ },
112
+ "index": {
113
+ "dtype": "int64",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null,
118
+ "fps": 30.0
119
+ },
120
+ "next.done": {
121
+ "dtype": "bool",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null,
126
+ "fps": 30.0
127
+ },
128
+ "observation.images.cam_left": {
129
+ "dtype": "video",
130
+ "shape": [
131
+ 480,
132
+ 640,
133
+ 3
134
+ ],
135
+ "names": [
136
+ "height",
137
+ "width",
138
+ "channel"
139
+ ],
140
+ "video_info": {
141
+ "video.fps": 30.0,
142
+ "video.codec": "av1",
143
+ "video.pix_fmt": "yuv420p",
144
+ "video.is_depth_map": false,
145
+ "has_audio": false
146
+ }
147
+ }
148
+ }
149
+ }
150
+ ```
151
+
152
+
153
+ ## Citation
154
+
155
+ **BibTeX:**
156
+
157
+ ```bibtex
158
+ [More Information Needed]
159
+ ```