https://github.com/altimis/confusion-matrix-for-mask-r-cnn
Confusion matrix for Mask R-CNN (Matterport implementation)
https://github.com/altimis/confusion-matrix-for-mask-r-cnn
confusion-matrix deep-learning mask-rcnn maskrcnn matterport object-detection plotting
Last synced: 4 months ago
JSON representation
Confusion matrix for Mask R-CNN (Matterport implementation)
- Host: GitHub
- URL: https://github.com/altimis/confusion-matrix-for-mask-r-cnn
- Owner: Altimis
- Created: 2020-07-21T21:05:48.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T11:14:16.000Z (about 4 years ago)
- Last Synced: 2025-04-11T04:05:06.526Z (6 months ago)
- Topics: confusion-matrix, deep-learning, mask-rcnn, maskrcnn, matterport, object-detection, plotting
- Language: Jupyter Notebook
- Homepage:
- Size: 857 KB
- Stars: 25
- Watchers: 1
- Forks: 16
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Confusion-matrix-for-Matterport-implementation-of-Mask-R-CNN
This repo contains a solution to extract the True Posives, False Positives and False Negative of each classe (including the Background Class) and plot the confusion matrix. The background class is being counted to cover the cases when the model miss (detect background instead of an actual object or detect an object instead of background)
Here is an example of plotting a pretty confusion matrix for 3 classes (class B, C and D) + background (class A)

The vertical axis represent the ground-truth classes and the horizontal axis represent the predicted classes. BG class is the background classe. It is not taken into account in the calculation of the mAP.