Datasets:
Commit
•
1f5103d
1
Parent(s):
92b7b16
add YOLO config instance example
Browse files
README.md
CHANGED
@@ -172,8 +172,30 @@ An example instance from the COCO config:
|
|
172 |
'width': 2064}
|
173 |
```
|
174 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
Provide any additional information that is not covered in the other sections about the data here. In particular describe any relationships between data points and if these relationships are made explicit.
|
176 |
|
|
|
177 |
### Data Fields
|
178 |
|
179 |
List and describe the fields present in the dataset. Mention their data type, and whether they are used as input or output in any of the tasks the dataset currently supports. If the data has span indices, describe their attributes, such as whether they are at the character level or word level, whether they are contiguous or not, etc. If the datasets contains example IDs, state whether they have an inherent meaning, such as a mapping to other datasets or pointing to relationships between data points.
|
|
|
172 |
'width': 2064}
|
173 |
```
|
174 |
|
175 |
+
An example instance from the YOLO config:
|
176 |
+
|
177 |
+
``` python
|
178 |
+
{'image': <PIL.PngImagePlugin.PngImageFile image mode=L size=2064x2944 at 0x7FAA140F2450>,
|
179 |
+
'objects': {'bbox': [[747, 390, 1493, 292],
|
180 |
+
[586, 206, 562, 157],
|
181 |
+
[1463, 225, 92, 57],
|
182 |
+
[1725, 215, 88, 65],
|
183 |
+
[80, 1688, 163, 2295],
|
184 |
+
[231, 1678, 253, 2283],
|
185 |
+
[435, 1675, 262, 2285],
|
186 |
+
[288, 543, 8, 7],
|
187 |
+
[905, 1663, 812, 2301],
|
188 |
+
[1318, 1653, 135, 2280],
|
189 |
+
[1439, 1642, 217, 2277],
|
190 |
+
[1737, 1019, 4, 13],
|
191 |
+
[26, 1991, 54, 1679]],
|
192 |
+
'label': [0, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]}}
|
193 |
+
```
|
194 |
+
|
195 |
+
|
196 |
Provide any additional information that is not covered in the other sections about the data here. In particular describe any relationships between data points and if these relationships are made explicit.
|
197 |
|
198 |
+
|
199 |
### Data Fields
|
200 |
|
201 |
List and describe the fields present in the dataset. Mention their data type, and whether they are used as input or output in any of the tasks the dataset currently supports. If the data has span indices, describe their attributes, such as whether they are at the character level or word level, whether they are contiguous or not, etc. If the datasets contains example IDs, state whether they have an inherent meaning, such as a mapping to other datasets or pointing to relationships between data points.
|