Skip to main content

High-performance NLP evaluation and significance testing library

Project description

Evaluatio

PyPI - Version License CI codecov

Statistically rigorous evaluation for NLP with fast metrics and built-in inference tools.

Why Evaluatio?

Most libraries make it easy to compute metrics. Few make it easy to evaluate models correctly.

Evaluatio is designed to fix that.

It provides:

  • Fast metric implementations (e.g. WER, CER)
  • Uncertainty estimation (e.g. bootstrap confidence intervals)
  • Model comparison tools (e.g. paired bootstrap tests)
  • Multiple testing correction (e.g. Holm-Bonferroni)
  • High performance (Rust-backed implementations)

What's included

Metrics

Metric Description
WER / CER Word and character error rate, including edit-distance variants
UED / UER Type-agnostic edit distance/error rate. Works with any Python object supporting __eq__
PIER Point of interest error rate, for evaluating punctuation, code-switching, capitalisation, etc. individually

Statistical inference

Tool Description
Bootstrap CI Confidence intervals via bootstrap resampling (general, and corpus-correct variants for WER/CER)
Significance testing for model comparison Including paired bootstrap test, paired permutation test, and BLEU specific paired bootstrap test for MT.
Multiple testing correction Bonferroni and Holm-Bonferroni
Cohen's d Effect size estimation (independent and paired)

Current task guides cover ASR. The inference tools are general-purpose and apply across tasks (especially for machine translation).

Quick example

import pandas as pd
from evaluatio.metrics.wer import (
    word_error_rate,
    word_error_rate_ci,
    word_error_rate_per_pair,
)
from evaluatio.inference.hypothesis import paired_bootstrap_test

df = pd.read_csv("inferences.csv")

# Corpus-level WER
wer = word_error_rate(df["references"], df["predictions"])

# Confidence interval
ci = word_error_rate_ci(df["references"], df["predictions"], 5000, 0.05)

# Model comparison
wer_a = word_error_rate_per_pair(df["references"], df["model_a"])
wer_b = word_error_rate_per_pair(df["references"], df["model_b"])

pvalue = paired_bootstrap_test(wer_a, wer_b, iterations=5000)

print(f"WER: {ci.mean:.3f} ± {ci.upper - ci.mean:.3f}")
print(f"P-value: {pvalue}")

This workflow reflects the recommended approach: compute a corpus-level metric, estimate uncertainty, and compare models using paired statistical tests.

Key features

Correct by default

  • Explicit, strongly typed APIs that reduce common evaluation mistakes.
  • Documentation is designed as a reference for statistically rigorous evaluation, not just API usage.

Built-in statistical inference

  • Bootstrap confidence intervals
  • Paired bootstrap significance testing
  • Multiple testing correction

High performance

  • Rust-backed core for efficient computation
  • Faster WER/CER than common alternatives

Installation

pip install evaluatio

Documentation

Full documentation (including evaluation guides and statistical background): https://prvinspace.github.io/evaluatio/.

Status

ASR metrics (WER, CER) and the statistical inference tools are stable. APIs elsewhere may change.

Contribute to the project

There is always room for improvements, new metrics, new functionality, etc. If you have any suggestions or requests please feel free to add an issue! The main repository for the project can be found at codeberg.org/prvinspace/evaluatio.

Maintainer

The project is maintained by Preben Vangberg <prv21fgt@bangor.ac.uk>.

Etymology

The name evaluatio is a Latin noun and means "evaluation". It also doubles as the English verb "to evaluate" with the Welsh verbal derivational suffix -io, so it could also be Welsh slang for "to evaluate".

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

evaluatio-0.5.2.tar.gz (32.6 kB view details)

Uploaded Source

Built Distributions

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

evaluatio-0.5.2-cp314-cp314t-win_amd64.whl (304.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (677.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_i686.whl (715.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl (742.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl (641.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (486.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (599.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (507.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (466.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (464.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

evaluatio-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl (411.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

evaluatio-0.5.2-cp314-cp314t-macosx_10_12_x86_64.whl (417.1 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

evaluatio-0.5.2-cp38-abi3-win_amd64.whl (309.7 kB view details)

Uploaded CPython 3.8+Windows x86-64

evaluatio-0.5.2-cp38-abi3-musllinux_1_2_x86_64.whl (681.9 kB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ x86-64

evaluatio-0.5.2-cp38-abi3-musllinux_1_2_i686.whl (723.7 kB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ i686

evaluatio-0.5.2-cp38-abi3-musllinux_1_2_armv7l.whl (747.8 kB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARMv7l

evaluatio-0.5.2-cp38-abi3-musllinux_1_2_aarch64.whl (646.1 kB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARM64

evaluatio-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

evaluatio-0.5.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (492.4 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ s390x

evaluatio-0.5.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (603.3 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ppc64le

evaluatio-0.5.2-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (513.1 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ i686

evaluatio-0.5.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (472.1 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARMv7l

evaluatio-0.5.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (469.9 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARM64

evaluatio-0.5.2-cp38-abi3-macosx_11_0_arm64.whl (417.9 kB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

evaluatio-0.5.2-cp38-abi3-macosx_10_12_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file evaluatio-0.5.2.tar.gz.

File metadata

  • Download URL: evaluatio-0.5.2.tar.gz
  • Upload date:
  • Size: 32.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.0

File hashes

Hashes for evaluatio-0.5.2.tar.gz
Algorithm Hash digest
SHA256 41e02662778eb8bff80d05e36a89451037210b583233670ed7c7177955ba007d
MD5 da3d6228f7a208f5df27dabc349ada2b
BLAKE2b-256 d4ef1a1362a0813a8a95784196cc1a33c0b3a9b5e2b060a6611b72dcbb94654b

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ff85a4592c95f321d9842025897b722a49b44a36b17b6e856f1d43dd46b029ee
MD5 ba35d71f4c5b76c2ceef7792df668aa3
BLAKE2b-256 f7988e5beebebfbbe01e0f324da073a178cea8dbffb196a8886f4f2340837637

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06c396720196071c6332b1c7e4b83d8905baa7a2e361b86461a3839161c6d2d3
MD5 fd8e35a2c66cf844c328a7f738e59202
BLAKE2b-256 4712cdb422ad3f4513c3fa2131a3afc466e57e9fa9dc6172a8a4adaf1c784193

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47c6fd954c63ea4c317b7fc4f06bb4667bb72c974a9bb1443657628467bd9f56
MD5 0e5c31ccbb45d80d2b442a50f336ab76
BLAKE2b-256 4d5f09336b2dee7bbaa019288b9b9951b6231a2d50cff52ac286771b5ae34b9f

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5297816cbf7869e16e9eda5544355b7e6ce113d429979c7ddf47e3db3e082bc
MD5 1c3e005f45bf647b42013e71beb2bc5c
BLAKE2b-256 994d75d677ff3ec4244bfab655e5fe21f497e1d2cc68ddb73365d42382b98228

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57bacd3ea7b9ab03bb1843c4b7a49d271216779042462a4a81000d1a4f6588d4
MD5 9b76b611bfff5495acb3acc8aa92ad37
BLAKE2b-256 b4c51c014d489b6d5a04bc168177d0eca3730e9e7e395d152f702133fb4c2324

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a355b739b8cdf1cefb50c65d462ab5dae0ce5c42d96911a17fc170002eda6109
MD5 05244d24774b49756c4828425212b074
BLAKE2b-256 6f79ccb1bbca1d262fe4a1dc72c6578204f6f29505135519ef166d4964eec5f1

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46984528d71a4a17f43e129817329ddde47c824e1c16734ec31f7ff2d6e3a2b5
MD5 1e5307c0b5acb80b3c67c79f1ebb9761
BLAKE2b-256 49488be4e42ec8c3955d418374f3be79beac88ecba9f9a5e24e4335cc8c603cf

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3be8460834d7df3f102357135a89738120ec1032ba49f7edaf298a0f2edf9c3a
MD5 a8beb09a9440cd7c4c034503928bc333
BLAKE2b-256 714401fb2e28a885246dd83c23b6c63e693e9b0ccef8d097412ef44a668f5db9

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68e25344f1a4ea05396a63a37eafee182b3fffb48523fda7f731b4394d9c2cd0
MD5 b90313f3bb057221355809711f9e128c
BLAKE2b-256 b8168cee4b771fd2afd7dc66a55c30a461c283ad7290e550f06b5ec29fe9d8a8

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b690ca4ed51646b15d168ca2bcff7326f9e16ab10e67ef8e642ec6e65108362
MD5 4978a3b37ce60c07521dcee42c00823e
BLAKE2b-256 a77cb28516fda8a98d465dd81fee671fc72c0825d669664d69ce3a3759012527

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1698623399bca34d3b6de3ec347172204c97ef57a2df16ef7d7645174384ad5
MD5 3cbc73d56197487c9d2fd66d4e17c3db
BLAKE2b-256 e8f2eb6966c02c095253a40146404c20767fed00483a6fa923b4dec74685057f

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d155c01a19b04f018aab381a3d5ad7cb17fb3f53afca59cba7a4911a18a0ce2
MD5 b9bc04df09d9762febd2f79908a5beb4
BLAKE2b-256 79a57556b8f0c36a759f7edc8f7c137fb04e96c0fd59c1915f5587f94b4b39ab

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9dd509317544345282c060c697770bc0cad4c4f9f5e2889c29d8221f7fac07bb
MD5 0cb97dd6e31ec1af5098a0e2e101d79a
BLAKE2b-256 29a73213b85a85263af112dc1cd4404a60ee23775d285daff3921f4ea0b58b9d

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: evaluatio-0.5.2-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 309.7 kB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.0

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e05d45873451a61d6cc074a2d34821e6cd8f62dbca6c01462a4118b42da6d4f7
MD5 3a8c7534f007667472f59ab7c7bfb141
BLAKE2b-256 2f70d0dead95b50a3dc14e76dd1cc1ca9e408f14edb1b63c7583f7f8712f9b8b

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74af9e2c9b87b2c24d30922b54aeea0f59e3b95578f5881adb466df2e46f182c
MD5 b8214a355b5933c572992dcf9acd884e
BLAKE2b-256 03c5397450a44b97ffb12831ad2d4929a8bb6e9c48cb567d9caeb79a1ed75a15

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62a3670d8afd89af27a604bd6f4870c6e00a7dd4038a0efa4313ce11c162d07b
MD5 09a562d3bc1e87c100bac57173b456fe
BLAKE2b-256 d6edf314caca70590d8407405ac4ac88a03761073033d03200bef5bc9949d37a

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfb94f5caac69e997b32ae04d16e0c8fa96bc37b6a30c6762775a021a314b2d0
MD5 cd94d3bf279d3a60177a72e48d1d5531
BLAKE2b-256 a2fde605545843c3a2bf859154f80b6478dbc69a0db6e5f534fb27135341d47a

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 678304d1b9e0149302ae6940d39bc0557bd995161ff7eda073a3063c0cf51431
MD5 32498ebd29ab2e41b45bbdd9716b7b39
BLAKE2b-256 50176441d8d19c94207215a3338ef835fb6d539ac14838f45337702466362af9

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5617a0d4a3ff4574284ab6ccfd716fcc1992dd0676e830261a13e0ce4fec278
MD5 7e5d7600050da7c811f1ea88e1cf2310
BLAKE2b-256 af13eb33936704f1938c529e91273d44eb94349a04f377a9c18eb1a13d1a4771

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2c09c0d1aba3d4d22a35414ccdb98110eae44d50ccb0b79197170fa6efaef91
MD5 657bc907b19fe91c5188e44a22bbf875
BLAKE2b-256 1fd140d33c23d44edc8df3a489e07c9d5b2c590c8225994643dc1cac252bd14f

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a7fa21ceb375107bc8e6339b70e8b5d7a8c10cba921e08e9613ba11d93e0e7b
MD5 c9ba61627ddfeef165dc2c484b904dc3
BLAKE2b-256 124f3831a379173c22f5a003f6128df58e1e64ff8bc0efcc7eced8f372d5e79b

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 441ab3d15aae56a1dcbb251204b8d17181cd26081ce8f87daa0a4ea6d86a1652
MD5 eae880afafef5bd581680c5d4753b7e2
BLAKE2b-256 57f74fe695accad60115ff42cef8ea45df76fd9263c256c108cf6c6c0b681573

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3aa0ae6dca1415f95751ac0631913dd17a3cd692424b0e1b4004a8136a405d0
MD5 a71831ee5ddce52edddc703e55622189
BLAKE2b-256 607fe3bcf635e885afc365a03897dbde483842ef72831c25a9f0f26672a4f096

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47a3e95a5736efffc5a4f780888450a2d06693be99fca601d37b5646e768e34d
MD5 95a57e0a43396c6f347c9c27f888bb62
BLAKE2b-256 bdedb18680352ea6ede1984fbac66bcdd54664319dea47276ab6cbb9579b13e9

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34439d53df19dd6dc7dd6831116659e98b4d71b9f63a18ebade8b1242d9093be
MD5 10f1b2d5312a00f1a34f045044ea4384
BLAKE2b-256 b3c5ab6b3666477ac96a88277835bc026deeb1ebc6600f05da4449b64d2a5b9b

See more details on using hashes here.

File details

Details for the file evaluatio-0.5.2-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for evaluatio-0.5.2-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33a41d8dc5a62d6797555ee52529b5894f8205de8194e1320ee14bdd4f7d25b4
MD5 4a75908abf4e0793d8f975b2fe8fdddb
BLAKE2b-256 cb01b1b9e3484086508b829a018ed8c6abf0ccde0964d2550493e7a595a55653

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