Skip to main content

A Python package for quantification (supervised class-prevalence estimation)

Project description

unit tests PyPI - Version python versions docs

mlquantify logo

A Python Package for Quantification


mlquantify is a Python library for quantification, also known as supervised prevalence estimation, designed to estimate the distribution of classes within datasets. It offers a range of tools for various quantification methods, model selection tailored for quantification tasks, evaluation metrics, and protocols to assess quantification performance. Additionally, mlquantify includes calibration tools, confidence region estimation, pluggable solvers and representations, and visualization utilities to help analyze and interpret results.

Website: https://luizfernandolj.github.io/mlquantify/


Installation

To install mlquantify, run the following command:

pip install mlquantify

If you only want to update, run the code below:

pip install --upgrade mlquantify

Contents

Section Description
33 Quantification Methods Counting (CC, PCC, ACC, TAC, TX, TMAX, T50, MS, MS2, FM, GACC, GPACC), Matching (DyS, HDy, HDx, SORD, SMM, MMD_RKHS, KDEyML, KDEyHD, KDEyCS, GHDy, GHDx, GKDEyML, EDy, EDx), Likelihood (EMQ, CDE, MLPE), Neighbors (PWK), Meta (EnsembleQ, AggregativeBootstrap, QuaDapt).
Dynamic class management All methods are dynamic, and handle multiclass and binary problems; in the binary case, One-Vs-All (OVA) is applied automatically.
Solvers Modular optimization backends: BinarySolver, LeastSquaresSolver, SimplexSolver.
Representations Pluggable feature representations: HistogramRepresentation, KDERepresentation, DistanceRepresentation, KernelMeanRepresentation, PredictionRepresentation.
Losses Composable loss functions (distance-based and likelihood-based) shared across quantifier families.
Calibration ClassifierCalibrator and QuantifierCalibrator for post-hoc calibration of classifiers and quantifiers.
Confidence Regions ConfidenceInterval, ConfidenceEllipseSimplex, ConfidenceEllipseCLR for uncertainty estimation on prevalence predictions.
Model Selection GridSearchQ and evaluation protocols (APP, NPP, UPP, PPP) tailored for quantification tasks.
Evaluation Metrics Metrics for quantification performance: AE, MAE, NAE, SE, MSE, KLD, RAE, NRAE, NKLD, NMD, RNOD, VSE, CvM_L1.
Visualization scikit-learn-style Display classes for both single- and multiple-sample results: DiagonalDisplay, BiasDisplay, ErrorByShiftDisplay, PrevalenceDisplay, ConfidenceRegionDisplay.
Comprehensive Documentation Full API reference and user guide covering all modules and methods.

Quick example:

This snippet builds a synthetic 3-class dataset that combines prior and covariate shift with make_quantification, then evaluates a quantifier across the Artificial Prevalence Protocol (APP) with apply_protocol — which trains the model on a held-out split and scores it on many test samples drawn at controlled prevalences.

import numpy as np
from sklearn.ensemble import RandomForestClassifier

from mlquantify.datasets import make_quantification
from mlquantify.model_selection import apply_protocol
from mlquantify.counting import ACC

# Synthetic 3-class data with a complex (stacked prior + covariate) shift
Xs, ys, _ = make_quantification(
    n_classes=5,
    shift_type=["prior", "covariate"],   # compose two kinds of dataset shift
    covariate_scale=1.0,
    random_state=0,
)
X, y = np.concatenate(Xs), np.concatenate(ys)   # pool the bags into one dataset

# Evaluate ACC under the Artificial Prevalence Protocol. apply_protocol fits the
# quantifier on a train split and scores it on many held-out test samples drawn
# at controlled prevalences (the test instances never overlap with training).
results = apply_protocol(
    ACC(RandomForestClassifier(random_state=0)), X, y,
    protocol="app", batch_size=[100, 500], scoring=["mae", "rae"], random_state=0, verbose=1
)

print(f"APP over {results['n_batches']} test samples")
print(f"  mean MAE -> {results['MAE'].mean():.4f}")
print(f"  mean RAE -> {results['RAE'].mean():.4f}")

Requirements

Core dependencies (installed automatically with pip install mlquantify):

  • scikit-learn
  • numpy
  • scipy
  • pandas
  • joblib
  • tqdm

Optional extras:

  • pip install mlquantify[viz] — plotting via mlquantify.visualization (adds matplotlib)
  • pip install mlquantify[neural] — neural quantifiers such as QuaNet (adds PyTorch)
  • pip install mlquantify[all] — everything above

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

mlquantify-0.5.1.tar.gz (332.9 kB view details)

Uploaded Source

Built Distributions

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

mlquantify-0.5.1-cp313-cp313-win_amd64.whl (429.4 kB view details)

Uploaded CPython 3.13Windows x86-64

mlquantify-0.5.1-cp313-cp313-win32.whl (418.1 kB view details)

Uploaded CPython 3.13Windows x86

mlquantify-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (809.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlquantify-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (432.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlquantify-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl (436.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mlquantify-0.5.1-cp312-cp312-win_amd64.whl (429.6 kB view details)

Uploaded CPython 3.12Windows x86-64

mlquantify-0.5.1-cp312-cp312-win32.whl (418.2 kB view details)

Uploaded CPython 3.12Windows x86

mlquantify-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (817.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlquantify-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (433.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlquantify-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl (437.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mlquantify-0.5.1-cp311-cp311-win_amd64.whl (429.1 kB view details)

Uploaded CPython 3.11Windows x86-64

mlquantify-0.5.1-cp311-cp311-win32.whl (417.4 kB view details)

Uploaded CPython 3.11Windows x86

mlquantify-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (818.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlquantify-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (432.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlquantify-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl (436.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mlquantify-0.5.1-cp310-cp310-win_amd64.whl (429.1 kB view details)

Uploaded CPython 3.10Windows x86-64

mlquantify-0.5.1-cp310-cp310-win32.whl (417.9 kB view details)

Uploaded CPython 3.10Windows x86

mlquantify-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlquantify-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (433.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlquantify-0.5.1-cp310-cp310-macosx_10_9_x86_64.whl (436.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mlquantify-0.5.1-cp39-cp39-win_amd64.whl (429.4 kB view details)

Uploaded CPython 3.9Windows x86-64

mlquantify-0.5.1-cp39-cp39-win32.whl (418.1 kB view details)

Uploaded CPython 3.9Windows x86

mlquantify-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (791.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlquantify-0.5.1-cp39-cp39-macosx_11_0_arm64.whl (433.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlquantify-0.5.1-cp39-cp39-macosx_10_9_x86_64.whl (436.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file mlquantify-0.5.1.tar.gz.

File metadata

  • Download URL: mlquantify-0.5.1.tar.gz
  • Upload date:
  • Size: 332.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1.tar.gz
Algorithm Hash digest
SHA256 d404a3aa7264e2fe25f13b8ba837353614a523789bc32b608fabecca23fdced6
MD5 b06f928b7945e63ec9ec8c53ef288442
BLAKE2b-256 c39ef5eb7bc5f123bbcf537c260924ee2d12bab72f6493e278b83b0a1ef4e5d4

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 429.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43d6fde4882a3f9d668ce80b2a1855df184b07af1295bff25126cbb3e2e78000
MD5 57ee3eda16f97a3f7e256a7a99adec93
BLAKE2b-256 7fdfb5afb12fa085317bf5450d22a1f3afa303fb121d040d572dcb49f0439204

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 418.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c7394fbb4e1e60fb79328e47d15411599b37b3cc15f1c855805b84ce8443af72
MD5 bf7021158309d7269a456a2105326b29
BLAKE2b-256 ab1845044cb28feec092addc075302eca16aac4c93c6642f869b38a35b4cd506

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2671786a936ddebce4751d6965857d8a82fbc89191daa8dbe3b309d8b82a9171
MD5 b082b80c112b3542d407043833a72afc
BLAKE2b-256 29ddb89ee43d69c75beafadbd5a2f912ea00f78a483d88490e0611e6e538cc34

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da57bb2ce14af3c0ca17e4c69d145bc60f10bfbf0bc780101f97ec425ef5bd57
MD5 7f06b6feccd37b38917efb6f8b180f78
BLAKE2b-256 806d47e6d222ecb26d188ad281237fad165234c6f1e9cea880379688f3c98107

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1bca91f0fbcab24ee0d70f2d8fc8d3cafd43ebb07cdfac66c128b048adf8b268
MD5 e1612ad23a9e9f8f23a4962b5e43a812
BLAKE2b-256 520425ec398319eacca74f4a00681fd2eac4106ca8575ed192444fe8e90573b0

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 429.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 54e4c2b19f252134f4c1b97e0b6152d69f1285622a1c27a975253c09a9671bcb
MD5 b7cb5a5937faa31489c439b0e1707e7a
BLAKE2b-256 82ebc2fc9d9d74441af432aa8d405039ab73a59f52886e070887abe13df0c153

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 418.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 94d1501b7502fca38bea16f81fcba239a03953e6a8ea68c6d18fd758d88cccf9
MD5 4cd8b23c3c67f563cf6204b0c4091454
BLAKE2b-256 3e302f4ccbd8eb1cfd5b73810ffa8a6bee3b0afd30422628bf4dfe033a2c1003

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a07d0245453d3098a88c7c0e0aafb7c7b3bf4bbc626f5a2da091398eb1c0e1a
MD5 995f5557e23d8b1e638d990fdb9a6d96
BLAKE2b-256 2e02ae8381a53a941c747173c13dd35783ae83c9aa2e884c0965a9ddc7c75d24

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abef7324629cfe377f9d9ebd3f50e226d0b234b2960c929fdee7333e80cce841
MD5 8705a76bea597db5de7174275ffe72fe
BLAKE2b-256 c881ac876f4dfddbb915a825b6dadc25081068d5dafd96495a284e942ddf8acf

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 059868bb5645e6ca4d7419bff02d9cfd00a03ed06b0ae38792897e9f58df2752
MD5 8c0ae28487d363266dcd05869a5f47e5
BLAKE2b-256 f9aae9c9f015a22eb926adc32979cf59d2eb8709f69f52117943f75695a97458

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 429.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 364ba93fa678fa9545a430c824bfff80a90de01390adb30c3b0195985ef0fe92
MD5 20dc869c9c8e4c27cf9454c03f93ca38
BLAKE2b-256 51f2bff4e1e4914eefd1fc112ea9f3a0340a7f0b93abc780ce7172b4ced056df

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 417.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5005dcfb4bea4448717d09e3759d198d2989eace310b74902d2b17a5deb28857
MD5 3a155908fe331d8ede558de9a1045f2c
BLAKE2b-256 9a2df88700df7be68659c926827f6eae1634c01ba0fd677daaa2013317185982

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdb5528204daa5dfe97ad6fc49ec108adc3533040f49aa23fb58a87c518f1be5
MD5 92fc1ac207c077c7f93f7b72641dd7d8
BLAKE2b-256 079b0022b70019fd99fca5a6c8e73d3f02ae87daf3e8d6e0d3c9d1fe91aa6edf

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16bf7344b5c3206a654ec5d0de46b37237c75fe3749fe0b2daecbe62c4dba377
MD5 2d4768240b381caa8b249c3962067f9f
BLAKE2b-256 cacbc77125f85094809c79f1bc6c0ff2d86441daeade3cc25042d28bc2dce213

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7260ec9b6b7a1d1af9fdcd7d4f5075f31584e90fbc13be55f5f09e436922a04
MD5 5d0de49668364f7c296a3c35393c546c
BLAKE2b-256 918cc691f47ce4aa7373615c278906365fa71d3ccce9e3b1622b7fda92d52f8b

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 429.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3a6b98d1df0634755e43c699878e278c47985573d7335d6c8b2bb06e8578f133
MD5 d12eb8c3e8dd378246fe0451bc50a800
BLAKE2b-256 6e2b800a51df4f53dbaf8b4c21661a967cf4b3d3ff49b65f72dd517677a87506

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 417.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0a47be00702f4333709ec5a66b3fccb746d340c410d797cf8e63a57c1d0b63a9
MD5 54ec103be0712d2f8b5bd0f0b1e4c102
BLAKE2b-256 45da2332bb4d3f7554e1257f144a5168e60fe4ff2512be31849d79ae96159b33

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9f925c279a0466d2cbcce5dc210fdc3dd248cc651fbc87d4453756138ddf65e
MD5 4bcac6707509c8aa1c928226f81bde82
BLAKE2b-256 79f8f32defa858f319b500dd3a9e2638d75e59bfaff49c4c69d8f714727390d3

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19948fadb848c5951153fbfb3f0236be2400329964d67553cc5ad199317e77a8
MD5 385137ca05dc9dd009bc54daabc7c942
BLAKE2b-256 357aaa40981292706df54298691a542bc30dec78e4dd9ade51c77b47a090d400

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05b711f44c7ce28c18498e52b8176a30302a7dc0844ef531a7e6f2bf44878be6
MD5 0a2af789ec624bf00f98ecac207563be
BLAKE2b-256 f054b79870487c570b681e6ee4f72353061ee6b9ec6c5c6865dbc3735360aac8

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 429.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a7b9d019a25d68abedd9d98f0d1bcedc8501c4b66800ab4ef4090c67f10be6ee
MD5 458ab1c1d1f2e4220e01e9e50aecebf1
BLAKE2b-256 f6901d83daa645d278aa4b6081981871b550e7fdd38f0f8c9500cfb4ee487d5a

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: mlquantify-0.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 418.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mlquantify-0.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 807117528627e3a730d23f06cb46a2417f93d1be1a3cc840c67708992ad55256
MD5 795c6fb1025f8dfff5dcf1dbed3bc41c
BLAKE2b-256 d4d4d5b50ebf3a3ab5403faeb343d09ff480ad2e0e3448d7af2f07730b41a18f

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 890ebc5ed411d37339acd76ff9b6ae0293ed00bf214ecdcf71cab2835bd3599a
MD5 62ac311e961b9b337c66ce34e243ee91
BLAKE2b-256 c862700d636a3daa8d4e3e82068f85c523746b4a8957a0de21fe5a332b7efdbe

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f03e33345f5eb793bd486172b5fa8f6672bd91310d818ac2012d1f52f8b46c1
MD5 7706935000c0fb0b73bd532b3526ba86
BLAKE2b-256 e84aec770e8835008ef7bcff4be2bb31a774af51de2ec40d110fe40a3b06bb86

See more details on using hashes here.

File details

Details for the file mlquantify-0.5.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlquantify-0.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6855e58442c4f744978bb5602ff5fa04892d90eb2cb8bbb9175ccdbbf5416a85
MD5 1345ad3da9e08dd6be31894daf7e76fc
BLAKE2b-256 c6e734e31d2cca8b4d90c83b0dfccb43d299cf6ec07c56300f9ef98c5c7774c6

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