Skip to main content

Extension of text_explainability for sensitivity testing (robustness, fairness, safety)

Project description

Text Sensitivity logo

Sensitivity testing (fairness, robustness & safety) for text machine learning models

PyPI Downloads Python_version Lint, Security & Tests License Documentation Status Code style: black DOI


Extension of text_explainability

Uses the generic architecture of text_explainability to also include tests of safety (how safe it the model in production, i.e. types of inputs it can handle), robustness (how generalizable the model is in production, e.g. stability when adding typos, or the effect of adding random unrelated data) and fairness (if equal individuals are treated equally by the model, e.g. subgroup fairness on sex and nationality).

© Marcel Robeer, 2021

Quick tour

Safety: test if your model is able to handle different data types.

from text_sensitivity import RandomAscii, RandomEmojis, combine_generators

# Generate 10 strings with random ASCII characters
RandomAscii().generate_list(n=10)

# Generate 5 strings with random ASCII characters and emojis
combine_generators(RandomAscii(), RandomEmojis()).generate_list(n=5)

Robustness: if your model performs equally for different entities ...

from text_sensitivity import RandomAddress, RandomEmail

# Random address of your current locale (default = 'nl')
RandomAddress(sep=', ').generate_list(n=5)

# Random e-mail addresses in Spanish ('es') and Portuguese ('pt'), and include from which country the e-mail is
RandomEmail(languages=['es', 'pt']).generate_list(n=10, attributes=True)

... and if it is robust under simple perturbations.

from text_sensitivity import compare_accuracy
from text_sensitivity.perturbation import to_upper, add_typos

# Is model accuracy equal when we change all sentences to uppercase?
compare_accuracy(env, model, to_upper)

# Is model accuracy equal when we add typos in words?
compare_accuracy(env, model, add_typos)

Fairness: see if performance is equal among subgroups.

from text_sensitivity import RandomName

# Generate random Dutch ('nl') and Russian ('ru') names, both 'male' and 'female' (+ return attributes)
RandomName(languages=['nl', 'ru'], sex=['male', 'female']).generate_list(n=10, attributes=True)

Installation

See the installation instructions for an extended installation guide.

Method Instructions
pip Install from PyPI via pip3 install text_sensitivity.
Local Clone this repository and install via pip3 install -e . or locally run python3 setup.py install.

Documentation

Full documentation of the latest version is provided at https://text-sensitivity.readthedocs.io/.

Example usage

See example_usage.md to see an example of how the package can be used, or run the lines in example_usage.py to do explore it interactively.

Releases

text_sensitivity is officially released through PyPI.

See CHANGELOG.md for a full overview of the changes for each version.

Citation

@misc{text_sensitivity,
  title = {Python package text\_sensitivity},
  author = {Marcel Robeer},
  howpublished = {\url{https://github.com/MarcelRobeer/text_sensitivity}},
  doi = {10.5281/zenodo.14192941},
  year = {2021}
}

Maintenance

Contributors

Todo

Tasks yet to be done:

  • Word-level perturbations
  • Add fairness-specific metrics:
    • Counterfactual fairness
  • Add expected behavior
    • Robustness: equal to prior prediction, or in some cases might expect that it deviates
    • Fairness: may deviate from original prediction
  • Tests
    • Add tests for perturbations
    • Add tests for sensitivity testing schemes
  • Add visualization ability

Credits

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

text_sensitivity-0.3.6.tar.gz (336.5 kB view details)

Uploaded Source

Built Distribution

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

text_sensitivity-0.3.6-py3-none-any.whl (56.6 kB view details)

Uploaded Python 3

File details

Details for the file text_sensitivity-0.3.6.tar.gz.

File metadata

  • Download URL: text_sensitivity-0.3.6.tar.gz
  • Upload date:
  • Size: 336.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for text_sensitivity-0.3.6.tar.gz
Algorithm Hash digest
SHA256 d2a65b9f17302bbb731372d228c608aded6fd4efb7a13721de35c0f3ce177955
MD5 175c3dd10bba9d3929953a8084c69c26
BLAKE2b-256 edca07a135d642f8a5289c25f00c8eb189a92ead88cb812fe65d58c4d8f39135

See more details on using hashes here.

File details

Details for the file text_sensitivity-0.3.6-py3-none-any.whl.

File metadata

File hashes

Hashes for text_sensitivity-0.3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 0216dbe03bf448881752c40385af1fcbe0b78664ae9df7c2574e886a4498e6a4
MD5 029deade786517ba60c0f91147efefd0
BLAKE2b-256 3a50f845f529f06bf48a87bc2c2f54777f583470ad4b32080e014cbdbba65138

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