kumarhans commited on
Commit
cde5a94
·
verified ·
1 Parent(s): 2918618

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +132 -0
README.md ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": "bi_xarm6_follower",
29
+ "total_episodes": 2,
30
+ "total_frames": 420,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:2"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 14
46
+ ],
47
+ "names": [
48
+ "left_joint1.pos",
49
+ "left_joint2.pos",
50
+ "left_joint3.pos",
51
+ "left_joint4.pos",
52
+ "left_joint5.pos",
53
+ "left_joint6.pos",
54
+ "left_gripper.pos",
55
+ "right_joint1.pos",
56
+ "right_joint2.pos",
57
+ "right_joint3.pos",
58
+ "right_joint4.pos",
59
+ "right_joint5.pos",
60
+ "right_joint6.pos",
61
+ "right_gripper.pos"
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 14
68
+ ],
69
+ "names": [
70
+ "left_joint1.pos",
71
+ "left_joint2.pos",
72
+ "left_joint3.pos",
73
+ "left_joint4.pos",
74
+ "left_joint5.pos",
75
+ "left_joint6.pos",
76
+ "left_gripper.pos",
77
+ "right_joint1.pos",
78
+ "right_joint2.pos",
79
+ "right_joint3.pos",
80
+ "right_joint4.pos",
81
+ "right_joint5.pos",
82
+ "right_joint6.pos",
83
+ "right_gripper.pos"
84
+ ]
85
+ },
86
+ "timestamp": {
87
+ "dtype": "float32",
88
+ "shape": [
89
+ 1
90
+ ],
91
+ "names": null
92
+ },
93
+ "frame_index": {
94
+ "dtype": "int64",
95
+ "shape": [
96
+ 1
97
+ ],
98
+ "names": null
99
+ },
100
+ "episode_index": {
101
+ "dtype": "int64",
102
+ "shape": [
103
+ 1
104
+ ],
105
+ "names": null
106
+ },
107
+ "index": {
108
+ "dtype": "int64",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null
113
+ },
114
+ "task_index": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ }
121
+ }
122
+ }
123
+ ```
124
+
125
+
126
+ ## Citation
127
+
128
+ **BibTeX:**
129
+
130
+ ```bibtex
131
+ [More Information Needed]
132
+ ```