Sraghvi commited on
Commit
adfdb37
·
verified ·
1 Parent(s): 0781461

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +144 -0
README.md ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "dual_arm_robot",
29
+ "total_episodes": 1,
30
+ "total_frames": 20,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:1"
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
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 6
46
+ ],
47
+ "names": [
48
+ "joint1",
49
+ "joint2",
50
+ "joint3",
51
+ "joint4",
52
+ "joint5",
53
+ "joint6"
54
+ ]
55
+ },
56
+ "action": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 6
60
+ ],
61
+ "names": [
62
+ "joint1",
63
+ "joint2",
64
+ "joint3",
65
+ "joint4",
66
+ "joint5",
67
+ "joint6"
68
+ ]
69
+ },
70
+ "observation.velocity": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 6
74
+ ],
75
+ "names": [
76
+ "joint1_vel",
77
+ "joint2_vel",
78
+ "joint3_vel",
79
+ "joint4_vel",
80
+ "joint5_vel",
81
+ "joint6_vel"
82
+ ]
83
+ },
84
+ "observation.effort": {
85
+ "dtype": "float32",
86
+ "shape": [
87
+ 6
88
+ ],
89
+ "names": [
90
+ "joint1_effort",
91
+ "joint2_effort",
92
+ "joint3_effort",
93
+ "joint4_effort",
94
+ "joint5_effort",
95
+ "joint6_effort"
96
+ ]
97
+ },
98
+ "timestamp": {
99
+ "dtype": "float32",
100
+ "shape": [
101
+ 1
102
+ ],
103
+ "names": null
104
+ },
105
+ "frame_index": {
106
+ "dtype": "int64",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null
111
+ },
112
+ "episode_index": {
113
+ "dtype": "int64",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null
118
+ },
119
+ "index": {
120
+ "dtype": "int64",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ },
126
+ "task_index": {
127
+ "dtype": "int64",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ }
133
+ }
134
+ }
135
+ ```
136
+
137
+
138
+ ## Citation
139
+
140
+ **BibTeX:**
141
+
142
+ ```bibtex
143
+ [More Information Needed]
144
+ ```