Skip to main content

A confusion matrix package.

Project description

linting tests pypi rtd

💫 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

dazed-1.0.2.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

dazed-1.0.2-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file dazed-1.0.2.tar.gz.

File metadata

  • Download URL: dazed-1.0.2.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.8.10 Linux/5.8.0-1033-azure

File hashes

Hashes for dazed-1.0.2.tar.gz
Algorithm Hash digest
SHA256 ac3571aee701d20897877a98aaa42de2a5dcb73de1916600e48148d56784b4d7
MD5 c391595632c2d71b4ad404963c0b57dc
BLAKE2b-256 f6678654da612c5ad7f46545442fd94049aff9ec74c556c51edb9e13642624b6

See more details on using hashes here.

File details

Details for the file dazed-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: dazed-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 8.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.8.10 Linux/5.8.0-1033-azure

File hashes

Hashes for dazed-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8a81bb4738b6140c819841bbe22dd45eff6b53cf3ed76ddc13b1e09aa6254d96
MD5 d646568c184a52aa2c1044af5bfffef3
BLAKE2b-256 0dcfb715170559c58371f0330516deb3c10036a0d459defe6690e0916aae6091

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page