Deason11 commited on
Commit
1709e79
·
verified ·
1 Parent(s): 45bfd79

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +20 -16
README.md CHANGED
@@ -4,9 +4,6 @@ task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
- - LeRobot
8
- - hdf5
9
- - hdf5
10
  configs:
11
  - config_name: default
12
  data_files: data/*/*.parquet
@@ -27,33 +24,33 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
27
  [meta/info.json](meta/info.json):
28
  ```json
29
  {
30
- "codebase_version": "v2.1",
31
  "robot_type": "unknown",
32
  "total_episodes": 1,
33
  "total_frames": 99,
34
  "total_tasks": 1,
35
- "total_videos": 2,
36
- "total_chunks": 1,
37
  "chunks_size": 1000,
38
  "fps": 25,
39
  "splits": {
40
  "train": "0:1"
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
  "observation.state": {
46
  "dtype": "float32",
47
  "shape": [
48
  7
49
  ],
50
- "names": null
 
51
  },
52
  "action": {
53
  "dtype": "float32",
54
  "shape": [
55
  7
56
- ]
 
57
  },
58
  "observation.images.pikaGripperDepthCamera": {
59
  "dtype": "video",
@@ -106,37 +103,44 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
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
 
 
4
  - robotics
5
  tags:
6
  - LeRobot
 
 
 
7
  configs:
8
  - config_name: default
9
  data_files: data/*/*.parquet
 
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
+ "codebase_version": "v3.0",
28
  "robot_type": "unknown",
29
  "total_episodes": 1,
30
  "total_frames": 99,
31
  "total_tasks": 1,
 
 
32
  "chunks_size": 1000,
33
  "fps": 25,
34
  "splits": {
35
  "train": "0:1"
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.state": {
41
  "dtype": "float32",
42
  "shape": [
43
  7
44
  ],
45
+ "names": null,
46
+ "fps": 25
47
  },
48
  "action": {
49
  "dtype": "float32",
50
  "shape": [
51
  7
52
+ ],
53
+ "fps": 25
54
  },
55
  "observation.images.pikaGripperDepthCamera": {
56
  "dtype": "video",
 
103
  "shape": [
104
  1
105
  ],
106
+ "names": null,
107
+ "fps": 25
108
  },
109
  "frame_index": {
110
  "dtype": "int64",
111
  "shape": [
112
  1
113
  ],
114
+ "names": null,
115
+ "fps": 25
116
  },
117
  "episode_index": {
118
  "dtype": "int64",
119
  "shape": [
120
  1
121
  ],
122
+ "names": null,
123
+ "fps": 25
124
  },
125
  "index": {
126
  "dtype": "int64",
127
  "shape": [
128
  1
129
  ],
130
+ "names": null,
131
+ "fps": 25
132
  },
133
  "task_index": {
134
  "dtype": "int64",
135
  "shape": [
136
  1
137
  ],
138
+ "names": null,
139
+ "fps": 25
140
  }
141
+ },
142
+ "data_files_size_in_mb": 100,
143
+ "video_files_size_in_mb": 500
144
  }
145
  ```
146