hqfang commited on
Commit
4ff0918
·
verified ·
1 Parent(s): 63d5c2a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -15
README.md CHANGED
@@ -24,20 +24,18 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
- "codebase_version": "v2.0",
28
  "robot_type": "panda",
29
  "total_episodes": 454,
30
  "total_frames": 66984,
31
  "total_tasks": 10,
32
- "total_videos": 0,
33
- "total_chunks": 1,
34
  "chunks_size": 1000,
35
  "fps": 10,
36
  "splits": {
37
  "train": "0:454"
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.images.image": {
43
  "dtype": "image",
@@ -50,7 +48,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
50
  "height",
51
  "width",
52
  "channel"
53
- ]
 
54
  },
55
  "observation.images.wrist_image": {
56
  "dtype": "image",
@@ -63,7 +62,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
63
  "height",
64
  "width",
65
  "channel"
66
- ]
 
67
  },
68
  "observation.state": {
69
  "dtype": "float32",
@@ -81,7 +81,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
81
  "rw",
82
  "gripper"
83
  ]
84
- }
 
85
  },
86
  "action": {
87
  "dtype": "float32",
@@ -98,44 +99,52 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
98
  "yaw",
99
  "gripper"
100
  ]
101
- }
 
102
  },
103
  "timestamp": {
104
  "dtype": "float32",
105
  "shape": [
106
  1
107
  ],
108
- "names": null
 
109
  },
110
  "frame_index": {
111
  "dtype": "int64",
112
  "shape": [
113
  1
114
  ],
115
- "names": null
 
116
  },
117
  "episode_index": {
118
  "dtype": "int64",
119
  "shape": [
120
  1
121
  ],
122
- "names": null
 
123
  },
124
  "index": {
125
  "dtype": "int64",
126
  "shape": [
127
  1
128
  ],
129
- "names": null
 
130
  },
131
  "task_index": {
132
  "dtype": "int64",
133
  "shape": [
134
  1
135
  ],
136
- "names": null
 
137
  }
138
- }
 
 
139
  }
140
  ```
141
 
 
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
+ "codebase_version": "v3.0",
28
  "robot_type": "panda",
29
  "total_episodes": 454,
30
  "total_frames": 66984,
31
  "total_tasks": 10,
 
 
32
  "chunks_size": 1000,
33
  "fps": 10,
34
  "splits": {
35
  "train": "0:454"
36
  },
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
  "features": {
40
  "observation.images.image": {
41
  "dtype": "image",
 
48
  "height",
49
  "width",
50
  "channel"
51
+ ],
52
+ "fps": 10
53
  },
54
  "observation.images.wrist_image": {
55
  "dtype": "image",
 
62
  "height",
63
  "width",
64
  "channel"
65
+ ],
66
+ "fps": 10
67
  },
68
  "observation.state": {
69
  "dtype": "float32",
 
81
  "rw",
82
  "gripper"
83
  ]
84
+ },
85
+ "fps": 10
86
  },
87
  "action": {
88
  "dtype": "float32",
 
99
  "yaw",
100
  "gripper"
101
  ]
102
+ },
103
+ "fps": 10
104
  },
105
  "timestamp": {
106
  "dtype": "float32",
107
  "shape": [
108
  1
109
  ],
110
+ "names": null,
111
+ "fps": 10
112
  },
113
  "frame_index": {
114
  "dtype": "int64",
115
  "shape": [
116
  1
117
  ],
118
+ "names": null,
119
+ "fps": 10
120
  },
121
  "episode_index": {
122
  "dtype": "int64",
123
  "shape": [
124
  1
125
  ],
126
+ "names": null,
127
+ "fps": 10
128
  },
129
  "index": {
130
  "dtype": "int64",
131
  "shape": [
132
  1
133
  ],
134
+ "names": null,
135
+ "fps": 10
136
  },
137
  "task_index": {
138
  "dtype": "int64",
139
  "shape": [
140
  1
141
  ],
142
+ "names": null,
143
+ "fps": 10
144
  }
145
+ },
146
+ "data_files_size_in_mb": 100,
147
+ "video_files_size_in_mb": 200
148
  }
149
  ```
150