Skip to main content

QuaPy

version 0.2.1

QuaPy is an open source framework for quantification (a.k.a. supervised prevalence estimation, or learning to quantify) written in Python.

QuaPy is based on the concept of "data sample", and provides implementations of the most important aspects of the quantification workflow, such as (baseline and advanced) quantification methods, quantification-oriented model selection mechanisms, evaluation measures, and evaluations protocols used for evaluating quantification methods. QuaPy also makes available commonly used datasets, and offers visualization tools for facilitating the analysis and interpretation of the experimental results.

Last updates:

  • Version 0.2.1 is released! major changes can be consulted here.
  • The developer API documentation is available here
  • Manuals are available here

Installation

pip install quapy

Cite QuaPy

If you find QuaPy useful (and we hope you will), please consider citing the original paper in your research:

@inproceedings{moreo2021quapy,
  title={QuaPy: a python-based framework for quantification},
  author={Moreo, Alejandro and Esuli, Andrea and Sebastiani, Fabrizio},
  booktitle={Proceedings of the 30th ACM International Conference on Information \& Knowledge Management},
  pages={4534--4543},
  year={2021}
}

A quick example:

The following script fetches a dataset of tweets, trains, applies, and evaluates a quantifier based on the Adjusted Classify & Count quantification method, using, as the evaluation measure, the Mean Absolute Error (MAE) between the predicted and the true class prevalence values of the test set.

import quapy as qp

training, test = qp.datasets.fetch_UCIBinaryDataset("yeast").train_test

# create an "Adjusted Classify & Count" quantifier
model = qp.method.aggregative.ACC()
Xtr, ytr = training.Xy
model.fit(Xtr, ytr)

estim_prevalence = model.predict(test.X)
true_prevalence = test.prevalence()

error = qp.error.mae(true_prevalence, estim_prevalence)
print(f'Mean Absolute Error (MAE)={error:.3f}')

Quantification is useful in scenarios characterized by prior probability shift. In other words, we would be little interested in estimating the class prevalence values of the test set if we could assume the IID assumption to hold, as this prevalence would be roughly equivalent to the class prevalence of the training set. For this reason, any quantification model should be tested across many samples, even ones characterized by class prevalence values different or very different from those found in the training set. QuaPy implements sampling procedures and evaluation protocols that automate this workflow. See the documentation for detailed examples.

Features

  • Implementation of many popular quantification methods (Classify-&-Count and its variants, Expectation Maximization, quantification methods based on structured output learning, HDy, QuaNet, quantification ensembles, among others).
  • Support for uncertainty quantification via bootstrap-based and Bayesian methods, including confidence intervals and simplex-aware confidence regions.
  • Versatile functionality for performing evaluation based on sampling generation protocols (e.g., APP, NPP, etc.).
  • Implementation of most commonly used evaluation metrics (e.g., AE, RAE, NAE, NRAE, SE, KLD, NKLD, etc.).
  • Datasets frequently used in quantification (textual and numeric), including:
    • 32 UCI Machine Learning datasets.
    • 11 Twitter quantification-by-sentiment datasets.
    • 3 product reviews quantification-by-sentiment datasets.
    • 4 tasks from LeQua 2022 competition and 4 tasks from LeQua 2024 competition
    • IFCB for Plancton quantification
  • Native support for binary and single-label multiclass quantification scenarios.
  • Model selection functionality that minimizes quantification-oriented loss functions.
  • Visualization tools for analysing the experimental results.

Requirements

  • scikit-learn, numpy, scipy
  • pytorch (for QuaNet)
  • svmperf patched for quantification (see below)
  • joblib
  • tqdm
  • pandas, xlrd
  • matplotlib

Contributing

In case you want to contribute improvements to quapy, please generate pull request to the "devel" branch.

Documentation

Check out the developer API documentation here.

Check out the Manuals, in which many code examples are provided:

Acknowledgments:

SoBigData++

This work has been supported by the QuaDaSh project "Finanziato dall’Unione europea---Next Generation EU, Missione 4 Componente 2 CUP B53D23026250001".

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quapy-0.2.1.tar.gz (158.3 kB view details)

Uploaded Source

Built Distribution

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

quapy-0.2.1-py3-none-any.whl (178.3 kB view details)

Uploaded Python 3

File details

Details for the file quapy-0.2.1.tar.gz.

File metadata

  • Download URL: quapy-0.2.1.tar.gz
  • Upload date:
  • Size: 158.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for quapy-0.2.1.tar.gz
Algorithm Hash digest
SHA256 230c10e5250af85bf3c389c509771e419878705e9dd968127652f83bae5dd490
MD5 77fc72a27891d91f4cc8aa66b1c33076
BLAKE2b-256 7353c00442dcac7d2fabc06f64c4ab379cc9eb3c9e3df6708dcad9881d1af7ab

See more details on using hashes here.

File details

Details for the file quapy-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: quapy-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 178.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for quapy-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0ec9ad0297c729f358f136a0fc93c835fe4881ac263d0327b986195276ff7f57
MD5 c0870cdb1bd27a66bc1178f06bdca875
BLAKE2b-256 b0539872f1401d40434db1fefbfc2ce1ccfc21369c6b4fb13b9777f2e2c82df0

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 Sentry Error logging StatusPage Status page