syun88 commited on
Commit
e124204
·
verified ·
1 Parent(s): 4a645e1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +118 -0
README.md ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "mg400",
29
+ "total_episodes": 1,
30
+ "total_frames": 475,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:1"
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
+ "jog_axis_code",
50
+ "speed_j",
51
+ "enable_robot",
52
+ "disable_robot",
53
+ "emergency_stop",
54
+ "stop_jog"
55
+ ],
56
+ "shape": [
57
+ 10
58
+ ]
59
+ },
60
+ "observation.state": {
61
+ "dtype": "float32",
62
+ "names": [
63
+ "joint_1.pos",
64
+ "joint_2.pos",
65
+ "joint_3.pos",
66
+ "joint_4.pos"
67
+ ],
68
+ "shape": [
69
+ 4
70
+ ]
71
+ },
72
+ "timestamp": {
73
+ "dtype": "float32",
74
+ "shape": [
75
+ 1
76
+ ],
77
+ "names": null
78
+ },
79
+ "frame_index": {
80
+ "dtype": "int64",
81
+ "shape": [
82
+ 1
83
+ ],
84
+ "names": null
85
+ },
86
+ "episode_index": {
87
+ "dtype": "int64",
88
+ "shape": [
89
+ 1
90
+ ],
91
+ "names": null
92
+ },
93
+ "index": {
94
+ "dtype": "int64",
95
+ "shape": [
96
+ 1
97
+ ],
98
+ "names": null
99
+ },
100
+ "task_index": {
101
+ "dtype": "int64",
102
+ "shape": [
103
+ 1
104
+ ],
105
+ "names": null
106
+ }
107
+ }
108
+ }
109
+ ```
110
+
111
+
112
+ ## Citation
113
+
114
+ **BibTeX:**
115
+
116
+ ```bibtex
117
+ [More Information Needed]
118
+ ```