Numpy is the only dependency of this library. To achieve this, the coco datasets and plotting features were removed. The core funcionality is the same as in dbolya/tide.
████████╗██╗██████╗ ███████╗
╚══██╔══╝██║██╔══██╗██╔════╝
██║ ██║██║ ██║█████╗
██║ ██║██║ ██║██╔══╝
██║ ██║██████╔╝███████╗
╚═╝ ╚═╝╚═════╝ ╚══════╝
An easy-to-use, general toolbox to compute and evaluate the effect of object detection and instance segmentation on overall performance. This is the code for our paper: TIDE: A General Toolbox for Identifying Object Detection Errors (ArXiv) [ECCV2020 Spotlight].
Check out our ECCV 2020 short video for an explanation of what TIDE can do:
This fork contains a light version which only depends on numpy. To achieve this, the coco datasets and most reporting features were removed. It is available on PyPi as well. Install with pip:
pip3 install tidecv-lightTIDE is meant as a drop-in replacement for the COCO Evaluation toolkit, and getting started is easy:
from tidecv import TIDE, datasets
tide = TIDE()
tide.evaluate(datasets.COCO(), datasets.COCOResult('path/to/your/results/file'), mode=TIDE.BOX) # Use TIDE.MASK for masks
tide.summarize() # Summarize the results as tables in the console.This prints evaluation summary tables to the console:
-- mask_rcnn_bbox --
bbox AP @ 50: 61.80
Main Errors
=============================================================
Type Cls Loc Both Dupe Bkg Miss
-------------------------------------------------------------
dAP 3.40 6.65 1.18 0.19 3.96 7.53
=============================================================
Special Error
=============================
Type FalsePos FalseNeg
-----------------------------
dAP 16.28 15.57
=============================
Check out the example notebook for more details.
The currently supported datasets are COCO, LVIS, Pascal, and Cityscapes. More details and documentation on how to write your own database drivers coming soon!
If you use TIDE in your project, please cite
@inproceedings{tide-eccv2020,
author = {Daniel Bolya and Sean Foley and James Hays and Judy Hoffman},
title = {TIDE: A General Toolbox for Identifying Object Detection Errors},
booktitle = {ECCV},
year = {2020},
}
For questions about our paper or code, make an issue in this github or contact Daniel Bolya. Note that I may not respond to emails, so github issues are your best bet.