A confusion matrix package.
Project description
💫 Dazed - A Confusion Matrix Package
Dazed is a little confusion matrix package designed to make your life easier. Its key features are:
support for lots of different data formats (sparse integers, sparse strings, one-hot arrays, dataframes)
support for multilabel data
ability to list most confused labels
ability to index sample information by confused label names
prints out nicely
Installation
For the basic installation:
$ pip install dazed
To include pandas dataframe support:
$ pip install dazed[pandas]
Basic Usage
To give you an idea of why you might want to use dazed, here is a toy example demonstrating the kind of investigation it was designed to help with. Note: I am using sparse string labels here but dazed’s interfaces can cope with integers, onehot encoded arrays and dataframes as well (refer to the API Reference for more information).
Imagine your building a machine learning model to catalogue a pet store’s inventory (primarily cats, dogs and fish). The owner has given you an image of each animal and you’ve trained your model and made some predictions. Your data looks like:
filenames = [
"img0.jpg", "img1.jpg", "img2.jpg", "img3.jpg", "img4.jpg", "img5.jpg"
]
truth = ["cat", "dog", "cat", "dog", "fish", "dog"]
pred = ["cat", "dog", "dog", "cat", "fish", "cat"]
In order to understand how your model is doing, you make a quick confusion matrix:
from dazed import ConfusionMatrix
cm = ConfusionMatrix.from_sparse(truth, pred, info=filenames)
print(cm)
| 0 1 2 index | label
--------- -------------
0 | 1 1 0 0 | cat
1 | 2 1 0 1 | dog
2 | 0 0 1 2 | fish
--------- -------------
From the confusion matrix it looks like the model might be prone to thinking that dogs are actually cats. To double check:
cm.most_confused()
[('dog', 'cat', 2), ('cat', 'dog', 1)]
Ah yes, dogs were predicted to be cats twice and cats to be dogs once. To try and find out what the problem might be you decide that you should check the images. To get the appropiate images:
cm.label_pair_info("dog", "cat")
['img3.jpg', 'img5.jpg']
Upon investigating the images you notice that both dogs are white. You decide to go back through and label your images for animal colour.
truth = [
["cat", "white"],
["dog", "brown"],
["cat", "brown"],
["dog", "white"],
["fish", "orange"],
["dog", "white"]
]
pred = [
["cat", "white"],
["dog", "brown"],
["dog", "brown"],
["cat", "white"],
["fish", "orange"],
["cat", "white"]
]
cm = ConfusionMatrix.from_sparse(
truth, pred, info=filenames, multilabel=True
)
print(cm)
| 0 1 2 3 4 index | label
------------- --------------------
0 | 0 0 1 0 0 0 | cat, brown
1 | 0 1 0 0 0 1 | cat, white
2 | 0 0 1 0 0 2 | dog, brown
3 | 0 2 0 0 0 3 | dog, white
4 | 0 0 0 0 1 4 | fish, orange
------------- --------------------
Hmm looks like all white dogs were miss classified as white cats.
cm.most_confused()
[('dog, white', 'cat, white', 2), ('cat, brown', 'dog, brown', 1)]
Ah yes looks like your model might be basing much of its prediction on animal colour, maybe time to go collect some more data.
To find out more about dazed take a look at the API Reference.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dazed-1.0.1.tar.gz
.
File metadata
- Download URL: dazed-1.0.1.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.7 Linux/5.4.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f114416d996e42745421771f59f56832a70b6d114bdf9380bf486f075ffb3ce2 |
|
MD5 | 9a2897fab86149b4f5e5bf6e56b774fd |
|
BLAKE2b-256 | ded2bcc8df4d2c2c66ab77fd63c33f50058bb7a22d155dfeee70410ed645553a |
File details
Details for the file dazed-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: dazed-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.7 Linux/5.4.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eed88b0cc146606c4e12b6d70813d0eca029ac987c005eaa67229e136b123587 |
|
MD5 | 8ee82060eacb53382af99152c2e43865 |
|
BLAKE2b-256 | 3972dcf54a6b708a196ff2c580688091b19daccd2e4d0d82153cd5742ee5196b |