WillMandil001 commited on
Commit
c2fe4b1
·
verified ·
1 Parent(s): feed966

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +146 -0
README.md ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - libero
8
+ - panda
9
+ - isaacsim
10
+ - PIB
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": "panda",
33
+ "total_episodes": 500,
34
+ "total_frames": 11032,
35
+ "total_tasks": 1,
36
+ "chunks_size": 1000,
37
+ "data_files_size_in_mb": 100,
38
+ "video_files_size_in_mb": 200,
39
+ "fps": 20,
40
+ "splits": {
41
+ "train": "0:500"
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.images.image": {
47
+ "dtype": "video",
48
+ "shape": [
49
+ 256,
50
+ 256,
51
+ 3
52
+ ],
53
+ "names": [
54
+ "height",
55
+ "width",
56
+ "channel"
57
+ ],
58
+ "info": {
59
+ "video.height": 256,
60
+ "video.width": 256,
61
+ "video.codec": "av1",
62
+ "video.pix_fmt": "yuv420p",
63
+ "video.is_depth_map": false,
64
+ "video.fps": 20,
65
+ "video.channels": 3,
66
+ "has_audio": false
67
+ }
68
+ },
69
+ "timestamp": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 1
73
+ ],
74
+ "names": null
75
+ },
76
+ "frame_index": {
77
+ "dtype": "int64",
78
+ "shape": [
79
+ 1
80
+ ],
81
+ "names": null
82
+ },
83
+ "episode_index": {
84
+ "dtype": "int64",
85
+ "shape": [
86
+ 1
87
+ ],
88
+ "names": null
89
+ },
90
+ "index": {
91
+ "dtype": "int64",
92
+ "shape": [
93
+ 1
94
+ ],
95
+ "names": null
96
+ },
97
+ "task_index": {
98
+ "dtype": "int64",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null
103
+ },
104
+ "observation.state": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 8
108
+ ],
109
+ "names": [
110
+ "x",
111
+ "y",
112
+ "z",
113
+ "roll",
114
+ "pitch",
115
+ "yaw",
116
+ "left_finger",
117
+ "right_finger"
118
+ ]
119
+ },
120
+ "action": {
121
+ "dtype": "float32",
122
+ "shape": [
123
+ 7
124
+ ],
125
+ "names": [
126
+ "x",
127
+ "y",
128
+ "z",
129
+ "roll",
130
+ "pitch",
131
+ "yaw",
132
+ "gripper"
133
+ ]
134
+ }
135
+ }
136
+ }
137
+ ```
138
+
139
+
140
+ ## Citation
141
+
142
+ **BibTeX:**
143
+
144
+ ```bibtex
145
+ [More Information Needed]
146
+ ```