ruanafan commited on
Commit
e9ae061
·
verified ·
1 Parent(s): 4933750

Upload README.md with huggingface_hub

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