Calvert0921 commited on
Commit
7e8e353
·
verified ·
1 Parent(s): 166f4f8

Upload README.md with huggingface_hub

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