
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
For object detection in images the mAP (mean average precision) metric is often used to see how good the implementation is. As no packages that make the calculation for you were available at this time, I adapted the implementation from João Cartucho, which uses files which hold the detection results. It now can be installed as a package with pip and simply gives you the mAP value at a certain iou threshold.
The performance of your neural net will be judged using the mAP criterium defined in the PASCAL VOC 2012 competition. The code from official Matlab code was adapted into Python.
Packages needed:
from mapcalc import calculate_map, calculate_map_range
ground_truth = {
'boxes':
[[60., 80., 66., 92.],
[59., 94., 68., 97.],
[70., 87., 81., 94.],
[8., 34., 10., 36.]],
'labels':
[2, 2, 3, 4]}
result_dict = {
'boxes':
[[57., 87., 66., 94.],
[58., 94., 68., 95.],
[70., 88., 81., 93.],
[10., 37., 17., 40.]],
'labels':
[2, 3, 3, 4],
'scores':
[0.99056727, 0.98965424, 0.93990153, 0.9157755]}
# calculates the mAP for an IOU threshold of 0.5
print(calculate_map(ground_truth, result_dict, 0.5))
# calculates the mAP average for the IOU thresholds 0.05, 0.1, 0.15, ..., 0.90, 0.95.
print(calculate_map_range(ground_truth, result_dict, 0.05, 0.95, 0.05))
The methods expect two dicts:
Boxes: A list of [x1, y1, x2, y2] (or [u, v, u + w, v + h], where (u, v) is the bounding box corner and (w, h) is the shape of the bounding box, so width and height), each representing a box that was detected.
Labels: List of classes (int) the algorithm assigned to the box
Scores: List of scores (float) the algorithm generated. If not specified, scores will be set to 1.
FAQs
Calculates the mAP value in object detection tasks
We found that mapcalc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.