Tavish9 commited on
Commit
d549f68
·
verified ·
1 Parent(s): ef17627

Upload README.md with huggingface_hub

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