Skip to main content

todo

Project description

DetoxAI is a Python package for debiasing neural networks. It provides a simple and efficient way to remove bias from your models while maintaining their performance. The package is designed to be easy to use and integrate into existing projects. For more information about the package, see the website https://detoxai.github.io and documentation https://detoxai.readthedocs.io

Installation

DetoxAI is available on PyPI, and can be installed by running the following command:

 pip install detoxai

Quickstart

The snippet below shows the high-level API of DetoxAI and how to use it.

import detoxai

model = ...
dataloader = ... # has to output a tuple of three tensors: (x, y, protected attributes)

corrected = detoxai.debias(model, dataloader)

metrics = corrected["SAVANIAFT"].get_all_metrics() # Get metrics for the model debiased with SavaniAFT method
model = corrected["SAVANIAFT"].get_model()

A shortest snippet that would actually run and shows how to plug DetoxAI into your code is below.

import torch
import torchvision
import detoxai

model = torchvision.models.resnet18(pretrained=True)
model.fc = torch.nn.Linear(model.fc.in_features, 2)  # Make it binary classification

X = torch.rand(128, 3, 224, 224)
Y = torch.randint(0, 2, size=(128,))
PA = torch.randint(0, 2, size=(128,))

dataloader = torch.utils.data.DataLoader(list(zip(X, Y, PA)), batch_size=32)

results: dict[str, detoxai.CorrectionResult] = detoxai.debias(model, dataloader)

Too see more examples of detoxai in use, navigate to the github repo https://github.com/DetoxAI/detoxai and see examples/ folder.

Acknowledgment

If you use this library in your work please cite as:

@misc{detoxai2025,
  author={Ignacy St\k{e}pka and Lukasz Sztukiewicz and Micha\l{} Wili\'{n}ski and Jerzy Stefanowski},
  title={{DetoxAI}: a {Python} Package for Debiasing Neural Networks},
  year={2025},
  url={https://github.com/DetoxAI/detoxai},
}

License

MIT License

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

detoxai-0.3.7.tar.gz (4.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

detoxai-0.3.7-py3-none-any.whl (92.9 kB view details)

Uploaded Python 3

File details

Details for the file detoxai-0.3.7.tar.gz.

File metadata

  • Download URL: detoxai-0.3.7.tar.gz
  • Upload date:
  • Size: 4.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.2

File hashes

Hashes for detoxai-0.3.7.tar.gz
Algorithm Hash digest
SHA256 951cf8c77d1e52cd57eeb94fd715193cb82b739bc7c66358d937333fe0984dfd
MD5 e919537970c8230004e0975e93a5e7b4
BLAKE2b-256 3a9cfe211801e8a9ed7bbd5524905915c9f96a46ab31f500c38625c1ca4c8932

See more details on using hashes here.

File details

Details for the file detoxai-0.3.7-py3-none-any.whl.

File metadata

  • Download URL: detoxai-0.3.7-py3-none-any.whl
  • Upload date:
  • Size: 92.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.2

File hashes

Hashes for detoxai-0.3.7-py3-none-any.whl
Algorithm Hash digest
SHA256 4f537504a4c182d483760c730f1b4050fa23f7ae1628654919d12f17a1f88728
MD5 512a530a681bb06a08e1f49204942ad2
BLAKE2b-256 7fac667aff6becd0913ab3194b2ae718b0752bf0fd45c124ab32704e24cd4304

See more details on using hashes here.

Supported by

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