Skip to main content

Quantification Library

Project description

PyPI - Version 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.
Comprehensive Documentation Full API reference and user guide covering all modules and methods.

Quick example:

This code first loads the breast cancer dataset from sklearn, which is then split into training and testing sets. It uses the Expectation Maximisation Quantifier (EMQ) with a RandomForest classifier to predict class prevalence. After training the model, it evaluates performance by calculating and printing the absolute error and bias between the real and predicted prevalences.

from mlquantify.likelihood import EMQ
from mlquantify.metrics import MAE, NRAE
from mlquantify.utils import get_prev_from_labels

from sklearn.ensemble import RandomForestClassifier
from sklearn.datasets import load_breast_cancer
from sklearn.model_selection import train_test_split

# Loading dataset from sklearn
features, target = load_breast_cancer(return_X_y=True)

#Splitting into train and test
X_train, X_test, y_train, y_test = train_test_split(features, target, test_size=0.3)

#Create the model, here it is the Expectation Maximisation Quantifier (EMQ) with a classifier
model = EMQ(RandomForestClassifier())
model.fit(X_train, y_train)

#Predict the class prevalence for X_test
pred_prevalence = model.predict(X_test)
real_prevalence = get_prev_from_labels(y_test)

#Get the error for the prediction
mae = MAE(real_prevalence, pred_prevalence)
nrae = NRAE(real_prevalence, pred_prevalence)

print(f"Mean Absolute Error -> {mae}")
print(f"Normalized Relative Absolute Error -> {nrae}")

Requirements

  • scikit-learn
  • numpy
  • scipy
  • pandas
  • joblib
  • tqdm
  • matplotlib
  • xlrd
  • abstention

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.4.1.tar.gz (285.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.4.1-cp313-cp313-win_amd64.whl (375.6 kB view details)

Uploaded CPython 3.13Windows x86-64

mlquantify-0.4.1-cp313-cp313-win32.whl (364.3 kB view details)

Uploaded CPython 3.13Windows x86

mlquantify-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (753.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlquantify-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (378.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlquantify-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl (383.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mlquantify-0.4.1-cp312-cp312-win_amd64.whl (375.9 kB view details)

Uploaded CPython 3.12Windows x86-64

mlquantify-0.4.1-cp312-cp312-win32.whl (364.5 kB view details)

Uploaded CPython 3.12Windows x86

mlquantify-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (761.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlquantify-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (379.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlquantify-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl (383.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mlquantify-0.4.1-cp311-cp311-win_amd64.whl (375.4 kB view details)

Uploaded CPython 3.11Windows x86-64

mlquantify-0.4.1-cp311-cp311-win32.whl (363.6 kB view details)

Uploaded CPython 3.11Windows x86

mlquantify-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlquantify-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (379.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlquantify-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl (382.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mlquantify-0.4.1-cp310-cp310-win_amd64.whl (375.3 kB view details)

Uploaded CPython 3.10Windows x86-64

mlquantify-0.4.1-cp310-cp310-win32.whl (364.2 kB view details)

Uploaded CPython 3.10Windows x86

mlquantify-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (736.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlquantify-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (379.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlquantify-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl (382.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mlquantify-0.4.1-cp39-cp39-win_amd64.whl (375.6 kB view details)

Uploaded CPython 3.9Windows x86-64

mlquantify-0.4.1-cp39-cp39-win32.whl (364.4 kB view details)

Uploaded CPython 3.9Windows x86

mlquantify-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (735.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlquantify-0.4.1-cp39-cp39-macosx_11_0_arm64.whl (379.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlquantify-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl (383.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlquantify-0.4.1.tar.gz
  • Upload date:
  • Size: 285.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.4.1.tar.gz
Algorithm Hash digest
SHA256 da2ceac4dcc1c7fe85dd0660d3b0e5acda73b107e388f3f7e37ef96f0a7c67d1
MD5 4059600c07ab611a194c6f59d83e6191
BLAKE2b-256 c7c70d1b26c2b6ef2efed635999bc3e4167f1209862b919b7fd967e58bf852cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 375.6 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.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 06bf4de653662a001e7fdcebc0bc112e90d784cc46ddd3c142eec20e88f244e7
MD5 83bac815a1592fcc541e775c590754bb
BLAKE2b-256 b5de75a7505a21f827635f43d8dc05b48682837acc030c5bfe3624a2ea651550

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 364.3 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.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 75182cabadacee19ffbb24f88fff2f61bff081d55b06732d26168651e169cdb9
MD5 aef8ffd504a760b90719eb465610e6c7
BLAKE2b-256 aaa984e6c5703c8caf1fa3a337f50f8ee8e4f5ca05b9a3cd49105f483ee86351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92187ec929af17d15e2d310dc2828555724c3db90e9dbb29129daa4286b6fb32
MD5 d699b5d11b315e80ac4462eb0241e475
BLAKE2b-256 0cf4854d57b7b7700f1ce96f3b282ecc3f98b0898413a5f84e03372d67d18391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3111ec96259e0141f2e161494a00bed9849ca2cb266a63cb5b0bbc48baeb35e
MD5 2b40f2de76bad44c9d4a56bf4ce5df46
BLAKE2b-256 d6dfef5648ec019b922a1c4dfc776f6ece767f6a3fa43bd1a664e6ab84a20f7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 240e36d5919dad9157c58880868745fa314675276ac058f0bc91aca0a68e3ae3
MD5 8443509aa43345fa57d793fb4f3d05e1
BLAKE2b-256 35cc3d662e888f8a4b16ee451b864fecf0318fe95b0df6ba81c8fe3d9ddd44de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 375.9 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.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f49e23e3b78b627d6b46b1e57e481c148f67c07d2f6c1aaaefbacdf47e7cde2
MD5 528c7f296a28bd077ca95703874e5a51
BLAKE2b-256 9f95acdd7e90018fce7904f288c453b92bb02eb169c37fb6d66dfe2bd6203e8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 364.5 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.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 afb6586735baf32062b92075ab9b9305c06141cd28ca43fa57fd1317a5641106
MD5 7026b286250cfa30db702780c1601b36
BLAKE2b-256 e117f44f8be1ac4e18ee98a08dbf38eb56bf40296ff2682401b720f69bb5a4fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 effbb77c33ff1e3cc547dfc3e1ea5ba87244cddc2d02a86cb3a6e8bf7be935bd
MD5 292aad79d92764a57ecae226af17cb23
BLAKE2b-256 59d384ad7bf3ab10fb162f5b2d6040d32f86a2d41a0d6a719a3bbcc0bc987477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa02ea5335629a5dbd0f1d808f66fdccb312a67abca2492bdd0d5798ab0e93d
MD5 2581e02fa2d9fe213c4e287cf6804273
BLAKE2b-256 48a3a4b7223ae43fd0f22bd563697e0ab171e5673c703cd2c3012e6d183bd3e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 696b821317fc40b4741d27d1f99da7487d50615b66d4b59b071762746d80d507
MD5 7a4f331bce88ef28bdae508d66eedf0d
BLAKE2b-256 c8f49f8908c6416c7ae60378c2af45829c5de88eed3055ee85d01751f01282b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 375.4 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.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1b67e089a1cf82f855e0a8b4f242625866cd489d44e189f685e1b8d8a3d9cb1c
MD5 6a0bfaaa0a30a0c4a171caf1ae8bad1f
BLAKE2b-256 b23eebfa79a829d6540ddeb4d4bc0390f57e4a78427546142f6c0d7a6daec4d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 363.6 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.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b4bcc71b90b83041678913eb6082da019095c57690105ede73c995c392740b85
MD5 f3691678ad9f5f7e00e2152a277bb52e
BLAKE2b-256 980f3488c7ebb253219830b1596ec8737764d35b0a49f97b9bcf5e6ab2906727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c737c7ab2bfa7fe5369f9763e58c1ab5f620799291f5f8974310113f5a0b5d00
MD5 1883786905be56883c6c825a0a3674b2
BLAKE2b-256 01fa7d0cd078fc5e04920e42456dfbd7e901084dc2e8d7e40f3cb6c8b25267de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e9a741317a4059d69928dff0824b6f11f8f9b24372f8aa0c49cc5e47d9968d3
MD5 b54c65a79591ed15e836e6615ab68b14
BLAKE2b-256 f3e2084709071b7eb1cddc85ad6c04a56dbc4f8717097ea4235eda13ef756fc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 807f7b48423a290e8841617c9b086cfbd12339f4352e147ba2789d1f19154fb5
MD5 ec9ca31d05c66f247ef4d87719c0767b
BLAKE2b-256 51a62b369c6a430856b2f8df15f53b4f33188ee7c2ec255653bfcec555d4090d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 375.3 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.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f99dd50c4c01ede60f86929b5d1138fc6fb7428bbf6d2527c3652eb02278f926
MD5 3c2bef713e46bfcb5fab2f3915e5153f
BLAKE2b-256 06a3f32c659f6e717180f1e5a9d0d793d0beae2527f9fc57496bcccb44d1b629

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 364.2 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.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a70430595d99abaddf5eeeee79df141faaf508ce497b84dc1c7c5cea85da95dd
MD5 43eb02537aec2f9fc368b4d3c80bc011
BLAKE2b-256 7246fe89837bed0d244ea1261495ab2145d98846b19c8b6dcd7f7ff1a72cf6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93b69098765eb788b4710a3cb84e00a3da3b3fa79c7f35cbbb5108b3ee251d7b
MD5 2b7665efa856e1f0110595b89ce9c429
BLAKE2b-256 3d35ae62e44811af9fdd9cae18daa4a9fb1a18869ba53fe619b5ab095d3eed54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c318c6c596f83d9aa27f9f3cfcdb5bfa660ba27bc5b65268f33c09f47c5075c8
MD5 f42fa35c538bb764dead6582b741a3c9
BLAKE2b-256 349e261f4f7c267f08f847b4a1d3ca66fba12d56c7b98612bf484e7b1e5f2e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a93434244a58bb3c35db21a9b087db6d2057d188bd7902784e2dc6a172ae041f
MD5 7ede42d4bb8bdaa4955dcbcd48d8a0ef
BLAKE2b-256 83a2975318afeb3e50255381621758836fd31793afc6dd8f36089d42a7bb4049

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 375.6 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.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dad2c17e110c8eab0873140c80a1681d3cb959e1301a9b9647a3a230fd705b85
MD5 fd1ce6e28fcf9add8e0d2d9e5cf8f533
BLAKE2b-256 913e5898f634a224f3f380ff30b1042d41b06748c83238f806608cbb1bd4649e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mlquantify-0.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 364.4 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.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 de97f71b8b4e67714f0527c23d96022b5166eeec007cf782a6fae402c6e1d178
MD5 20d2d8dbda01de41b3e9fb88b940d7e3
BLAKE2b-256 65604d6e8a88fbd6086c0d6b3206483e322b0b1ec2cfdf466418570284842bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfc377f14211f9b3076d6947614b525d68a693a706bf785be9d682702069bc1a
MD5 2b80b2bdbce7e2a34a37f3b09da17737
BLAKE2b-256 9406b04312fa54f40baa1f36ab6e490999472d59e988c893db842ce9484ba361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a92256545a94f54838c3251b328bcf865a5d88e7ff76c0b83b03b67eefdcea1b
MD5 a183a4fa43ffdbaea9d8adeb6bd8d8c6
BLAKE2b-256 6df59d742a5e99d7024b2a6e0fdaf2542eefecc7d6129fa492d9f71fa484f161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mlquantify-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f808cba7f1c4263b7c663beeead8a6e08dd001fe83ae1cae1613ec89496ffb6
MD5 36e572f8b08a26f423c61a624936e106
BLAKE2b-256 d8b962d43b6ae11294118911b5efaa53ac0bcaf39d06f2de5fe261364f21f0db

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