astroyat commited on
Commit
c3501a0
·
verified ·
1 Parent(s): 3fc0a8c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +23 -16
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.1",
28
  "robot_type": "lekiwi_client",
29
- "total_episodes": 5,
30
- "total_frames": 2970,
31
  "total_tasks": 1,
32
- "total_videos": 5,
33
- "total_chunks": 1,
34
  "chunks_size": 1000,
35
  "fps": 30,
36
  "splits": {
37
- "train": "0:5"
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",
@@ -54,7 +52,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
54
  "x.vel",
55
  "y.vel",
56
  "theta.vel"
57
- ]
 
58
  },
59
  "observation.state": {
60
  "dtype": "float32",
@@ -71,7 +70,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
71
  "x.vel",
72
  "y.vel",
73
  "theta.vel"
74
- ]
 
75
  },
76
  "observation.images.wrist": {
77
  "dtype": "video",
@@ -101,37 +101,44 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
101
  "shape": [
102
  1
103
  ],
104
- "names": null
 
105
  },
106
  "frame_index": {
107
  "dtype": "int64",
108
  "shape": [
109
  1
110
  ],
111
- "names": null
 
112
  },
113
  "episode_index": {
114
  "dtype": "int64",
115
  "shape": [
116
  1
117
  ],
118
- "names": null
 
119
  },
120
  "index": {
121
  "dtype": "int64",
122
  "shape": [
123
  1
124
  ],
125
- "names": null
 
126
  },
127
  "task_index": {
128
  "dtype": "int64",
129
  "shape": [
130
  1
131
  ],
132
- "names": null
 
133
  }
134
- }
 
 
135
  }
136
  ```
137
 
 
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
+ "codebase_version": "v3.0",
28
  "robot_type": "lekiwi_client",
29
+ "total_episodes": 204,
30
+ "total_frames": 82113,
31
  "total_tasks": 1,
 
 
32
  "chunks_size": 1000,
33
  "fps": 30,
34
  "splits": {
35
+ "train": "0:204"
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
  "action": {
41
  "dtype": "float32",
 
52
  "x.vel",
53
  "y.vel",
54
  "theta.vel"
55
+ ],
56
+ "fps": 30
57
  },
58
  "observation.state": {
59
  "dtype": "float32",
 
70
  "x.vel",
71
  "y.vel",
72
  "theta.vel"
73
+ ],
74
+ "fps": 30
75
  },
76
  "observation.images.wrist": {
77
  "dtype": "video",
 
101
  "shape": [
102
  1
103
  ],
104
+ "names": null,
105
+ "fps": 30
106
  },
107
  "frame_index": {
108
  "dtype": "int64",
109
  "shape": [
110
  1
111
  ],
112
+ "names": null,
113
+ "fps": 30
114
  },
115
  "episode_index": {
116
  "dtype": "int64",
117
  "shape": [
118
  1
119
  ],
120
+ "names": null,
121
+ "fps": 30
122
  },
123
  "index": {
124
  "dtype": "int64",
125
  "shape": [
126
  1
127
  ],
128
+ "names": null,
129
+ "fps": 30
130
  },
131
  "task_index": {
132
  "dtype": "int64",
133
  "shape": [
134
  1
135
  ],
136
+ "names": null,
137
+ "fps": 30
138
  }
139
+ },
140
+ "data_files_size_in_mb": 100,
141
+ "video_files_size_in_mb": 500
142
  }
143
  ```
144