A Python package for quantification (supervised class-prevalence estimation)
Project description
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 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}")
- In case you need any help, refer to the User Guide.
- Explore the API documentation for detailed developer information.
- See also the library in the pypi site in pypi mlquantify
- Check the CHANGELOG to see what's currently beign developed!
Requirements
Core dependencies (installed automatically with pip install mlquantify):
- scikit-learn
- numpy
- scipy
- pandas
- joblib
- tqdm
Optional extras:
pip install mlquantify[viz]— plotting viamlquantify.visualization(adds matplotlib)pip install mlquantify[neural]— neural quantifiers such as QuaNet (adds PyTorch)pip install mlquantify[all]— everything above
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mlquantify-0.5.0.tar.gz.
File metadata
- Download URL: mlquantify-0.5.0.tar.gz
- Upload date:
- Size: 331.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
597e2bb4fac5cff53fced99fb9fd68ed335de906fe82dc1d11b59cd8c1c5fa4e
|
|
| MD5 |
37583a400ceb174d57e660ea71243bb7
|
|
| BLAKE2b-256 |
aa9a3bb715c34b2f8f711e78508906b80bd6b25724fde042ccb5e23c2aeed6ff
|
File details
Details for the file mlquantify-0.5.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 428.1 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15db9aed012d32eb7d9a83fac10cd981c97788ec19893d47f721ef96d9adbe61
|
|
| MD5 |
9d3928c4bcd4a5f6604b5e922ee6b52c
|
|
| BLAKE2b-256 |
7207b15f86e1000e47fdfd146f1e9f1cbab2d4143283191eb8b413301c7ad493
|
File details
Details for the file mlquantify-0.5.0-cp313-cp313-win32.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp313-cp313-win32.whl
- Upload date:
- Size: 416.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1dad236f9c506daa1cb2a27c3a4a23e6e02729fa3468a1c06a737e8c6ffd5a5
|
|
| MD5 |
4e48d2fe0d0a8f6f23e4fa6af9ab7e71
|
|
| BLAKE2b-256 |
c3f2c2f3a7201596591732023bc9ee7136ad97f6d3ff0d14dba9986e5659becf
|
File details
Details for the file mlquantify-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 808.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e963823b9d8f18b96e2dd19ec5e1835f923a76f9d66fb2202de0bb2ebdd737ef
|
|
| MD5 |
32e83ec0cb602de7fe9356406c5696ba
|
|
| BLAKE2b-256 |
97e2230ce50ba1740e87455563d9b81c853f199dca412a3ca3b263c68ee2352a
|
File details
Details for the file mlquantify-0.5.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 431.1 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87c1ca4f563481b095da168f3ff73d571d99c8b75e61178d6ad5878ea1b7e745
|
|
| MD5 |
4b5661f9970357ca37ebed182cdfc153
|
|
| BLAKE2b-256 |
2c3e147ff7b76b06f6313304c952827ee0a1d33e3127fd7c6cb2586dcf27127e
|
File details
Details for the file mlquantify-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 435.6 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
951fe5c7683be4f53b32780b6623e5ebd05875af503b7e78231ead9d896895dd
|
|
| MD5 |
fa8f205af4720d73b502e0c9453dd389
|
|
| BLAKE2b-256 |
eda25adecaaba276abc0d0510569dfddc15dbb5b2ca87bcad2f3dfa5732cbd15
|
File details
Details for the file mlquantify-0.5.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 428.3 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff337a5adbcfc2c516545a2cf565ea5a3fbd947de9d52a16ddfa8d0222cf8d60
|
|
| MD5 |
27a28e6c5f32d93be64e3dcdd238ccef
|
|
| BLAKE2b-256 |
7d95ec466a93487f4433ababbbe084af747dedca84ee7b50340ebb9762f71e09
|
File details
Details for the file mlquantify-0.5.0-cp312-cp312-win32.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp312-cp312-win32.whl
- Upload date:
- Size: 416.9 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bca5974840c7fce24a50986b8bd9b538be2a6fd08541fca542ddc5d24e51ed6
|
|
| MD5 |
26c78df77c2ed44d6eef5ff05edec362
|
|
| BLAKE2b-256 |
b572f0937f412835668bc61ec7ec091c86afeeabdfaf14cec109beb20160a468
|
File details
Details for the file mlquantify-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 816.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50d05cf8366ec2ba45854cd8f45db722a942c322d183539cbff5e93eec6b840f
|
|
| MD5 |
774b60bfc13dfe111a39825e2d18738a
|
|
| BLAKE2b-256 |
f44bdfa2a7fd68518ea0547b137b967f4a6ce779bdbf74e2d31b3438a43c4e9b
|
File details
Details for the file mlquantify-0.5.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 431.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa77d7789d4b0bbbf4966b9c744f7f3e34469e3890cf2576a48d26a1b93d3a69
|
|
| MD5 |
2c948d2046753a7d58b84d50fe09ff15
|
|
| BLAKE2b-256 |
03ee9e0214a796cf64dc40ae0c37e44a0001722b1f3297c648513dfc88e95e39
|
File details
Details for the file mlquantify-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 436.2 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bcc38962f4d8a8d40be639fea56ac87a443a34b79de6ed7c139954a17f22fb8
|
|
| MD5 |
c39f028941a141bf568ed079046562fa
|
|
| BLAKE2b-256 |
030baefe25df805b6f08bc196dff8ca966abd5f0b70ab9f129214f73019f11b1
|
File details
Details for the file mlquantify-0.5.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 427.8 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a266e65a807a472ff91055493720dcbe44d55debc52cf09f34dfbb8ef05bec9e
|
|
| MD5 |
acf3e52fcfdfcf0afef41e657aa8e475
|
|
| BLAKE2b-256 |
0002ccb3e7e66c25563efde486608082ba1607d1647a07ac26cf844e8fa699b5
|
File details
Details for the file mlquantify-0.5.0-cp311-cp311-win32.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp311-cp311-win32.whl
- Upload date:
- Size: 416.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
314f0a8d0b9dd38aa864441f3da842469315cdcf05a65fa6e8e9379a1ece1b38
|
|
| MD5 |
cd3e0973adc28b9bc6bca159372f4c9e
|
|
| BLAKE2b-256 |
45f9f8ebd6147161a8932ca9b4fbc58cbd0cf686db432f41f84c5fe32175374f
|
File details
Details for the file mlquantify-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 817.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e33c518253d677f4fbed4f4c5a33f174308c1a4e7d9e0df4b83688d7a5fc585
|
|
| MD5 |
7c599692e9629deee8d632ab9bd35b5d
|
|
| BLAKE2b-256 |
f1a60ed1c87b6a1e85b06ed5dfa664a13c4e8ef56446728b78c4a7ddd4de2b1c
|
File details
Details for the file mlquantify-0.5.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 431.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c63913862dc3aea8998c692a92afa5a62e272ef9ffbea259cf5bcb2ab6f7ba3a
|
|
| MD5 |
1601d28ac078ab616c10372956ccc2f4
|
|
| BLAKE2b-256 |
a009f532918e18babe0b2b2ca01681198ec735b5b0ea33d4a23101174a3b9d6e
|
File details
Details for the file mlquantify-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 434.6 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46e3d8328320653280e3a114eb2fead88fc6b70959cee05cc3e95164e92f773b
|
|
| MD5 |
055bbfec2e1591b2e18260235cd2cc67
|
|
| BLAKE2b-256 |
307f9ba26ecd9d9dd9516aca69e80bcd80eafe4fdbce723c1129febade571ff8
|
File details
Details for the file mlquantify-0.5.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 427.8 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1be59117360bdde89021ab79a1c256cd3fe7092139951f4b7877141cd085b96
|
|
| MD5 |
2e5dce63aecf22235ae9721711473fdf
|
|
| BLAKE2b-256 |
aad8a6ca0e026b9fd1da04599b2c0c3a3c8e40bb8bce659ae9b5a1f59da1aa80
|
File details
Details for the file mlquantify-0.5.0-cp310-cp310-win32.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp310-cp310-win32.whl
- Upload date:
- Size: 416.6 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81a8a3054896d79c0fc414c9d19252037c511783194a0f6444bef2ed2fb65762
|
|
| MD5 |
8674a5d51fb13a75cf90ec6e8cf08311
|
|
| BLAKE2b-256 |
55c1ca4dbdedfd0910309e1e6a1c619e717c866fdb7297e11b7686513289aeae
|
File details
Details for the file mlquantify-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 791.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
796c820f6d6138ac5ef61ebc53bd4de128d615e80506f0eca8c969bfa7373fcd
|
|
| MD5 |
6d1a3a46108448dab0532ff24769f180
|
|
| BLAKE2b-256 |
1437c3ee9e4c6abe23cf57ba4888a96ae60bf072362b0749184e6cac27eac301
|
File details
Details for the file mlquantify-0.5.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 432.2 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5948c265bc90c803c062d129527a58c3fe43214d57d667c617ea2db6f7bd3ff8
|
|
| MD5 |
f50640665906d5a41c4099bf86a75ce5
|
|
| BLAKE2b-256 |
23b57b7160aa208fe1f356f7c9b7740c7b7589bfd2446203a4e1787dbc06cdc8
|
File details
Details for the file mlquantify-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 435.3 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e02f9bfae4beec234f8a7b4b423300aa672172c319d0a0deca38c717fd4bf507
|
|
| MD5 |
dc3a4dfe7d9b24607ab31704976927bb
|
|
| BLAKE2b-256 |
e11752e01cbfb7d986b5302027078ab781c4c4de9de92b2915048cfdb268466e
|
File details
Details for the file mlquantify-0.5.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 428.1 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79dd1462953ad0b27b4220d4640c6a8628cad9b8572d70ac9c4055525a839553
|
|
| MD5 |
75b6bf7d58eeada2d7d7bdb3b5164691
|
|
| BLAKE2b-256 |
ad29da78e0fd782c3c87f8abf7cab5452567edbb0286e03fd7599e0db74c2db5
|
File details
Details for the file mlquantify-0.5.0-cp39-cp39-win32.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp39-cp39-win32.whl
- Upload date:
- Size: 416.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd6a7d587f2ddb7ad709a3f14dbaba26c64b78a7ca18ab1c314b28009ff5bc18
|
|
| MD5 |
e9641d1ede9dd908c4b2b0733097e1f9
|
|
| BLAKE2b-256 |
334edaf5b80c858383c5b55058f74ebfaba073f00ca30df3092df29bcce37209
|
File details
Details for the file mlquantify-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 790.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
533d7a59dc50bb0b574491dde5e6772e8b9f2f074ddde3a2d3cbd7190f56cbb1
|
|
| MD5 |
e232df93b3ca95c1f255159a23ffffed
|
|
| BLAKE2b-256 |
0de350aaddf053555727946861a890defa7426847bc8779248dd68cf8f503293
|
File details
Details for the file mlquantify-0.5.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 432.5 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84ff63b5462215036c71f5aa9d101b1905a6849f3c6f0d4b66bf25f97a66a05d
|
|
| MD5 |
607078151a6de8f3975187606bea7a11
|
|
| BLAKE2b-256 |
8ec19c62c456ffca1f4aafb320897ac1b22e3b9838bbcaaa37c71346ee3dd92e
|
File details
Details for the file mlquantify-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: mlquantify-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 435.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afa86f472617bc3eb8bfcf530e4c9c12f69df2e6d897c4703cf64f360c37021c
|
|
| MD5 |
c1ec19fd7058f63a97d809c202b77e2c
|
|
| BLAKE2b-256 |
9f73c799ca3895ab92e592f8aa127214762e6e546cb8bfcd5759402cddc2f783
|