Skip to main content

Faster interpretation of the original COCOEval

Project description

Faster-COCO-Eval

The Fastest, Most Reliable COCO Evaluation Library for Computer Vision

PyPI PyPI Downloads Conda Version Conda Platforms docs license CI - Test

Replace pycocotools with Faster-COCO-Eval Today

Aspect pycocotools faster-coco-eval
Support & Development Outdated and not actively maintained. Issues and incompatibilities arise with new releases. Actively maintained, continuously evolving, and regularly updated with new features and bug fixes.
Transparency & Reliability Lacks comprehensive testing, making updates risky and results less predictable. Emphasizes extensive test coverage and code quality, ensuring trustworthy and reliable results.
Performance Significantly slower, especially on large datasets or distributed workloads. 3-4x faster due to C++ optimizations and modern algorithms.
Functionality Limited to basic COCO format evaluation. Offers extended metrics, support for new IoU types, compatibility with more datasets (e.g., CrowdPose, LVIS), advanced visualizations, and seamless integration with PyTorch/TorchVision.
Ease of Use Requires manual installation, often with compilation issues. Simple pip install, no compilation required, and drop-in replacement API.
Visualization Basic plotting capabilities. Advanced error visualization, annotation display, and comprehensive metric analysis tools.

Key Benefits of Faster-COCO-Eval:

Blazing Fast Performance - Evaluate large datasets in minutes instead of hours
Reliable & Trusted - Extensive test coverage ensures consistent, reproducible results
Modern Features - Support for latest CV tasks, IoU types, and dataset formats
Easy to Use - Drop-in replacement for pycocotools with enhanced API
Comprehensive Visualization - Understand your model's performance with beautiful, informative plots

Join thousands of computer vision researchers and engineers who have already switched to Faster-COCO-Eval!

Quick Installation

Option 1: Basic (Drop-in Replacement)

Get started in seconds with the core evaluation functionality:

pip install faster-coco-eval

Option 2: Full Installation (with Visualization)

For complete functionality including advanced visualization tools:

pip install faster-coco-eval[extra]

Option 3: Conda Installation

If you use Anaconda/Miniconda:

conda install conda-forge::faster-coco-eval

🚀 Quick Start: Drop-in Replacement

Replace pycocotools with Faster-COCO-Eval in 2 lines of code:

import faster_coco_eval

# This single line replaces pycocotools with faster-coco-eval
faster_coco_eval.init_as_pycocotools()

# Now use the familiar pycocotools API
from pycocotools.coco import COCO
from pycocotools.cocoeval import COCOeval

# Load annotations and predictions
anno = COCO(str(anno_json))  # Annotations file
pred = anno.loadRes(str(pred_json))  # Predictions file

# Evaluate bounding boxes
val = COCOeval(anno, pred, "bbox")
val.evaluate()
val.accumulate()
val.summarize()

# Or evaluate segmentation masks
val = COCOeval(anno, pred, "segm")
val.evaluate()
val.accumulate()
val.summarize()

That's it! Your existing code will run 3-4x faster with no changes.

⚡ Blazing Fast Performance

Faster-COCO-Eval is built on top of a highly optimized C++ implementation, providing 3-4x faster evaluation than the standard pycocotools.

Real-World Performance Benchmark

Tested on 5000 images from the COCO validation dataset using mmdetection framework:

Evaluation Type Faster-COCO-Eval (sec) pycocotools (sec) Speedup
Bounding Boxes 5.812 22.72 3.9x
Segmentation 7.413 24.434 3.3x

For large datasets, this means hours saved on evaluation time!

Colab Examples

See the performance in action:

🎯 Powerful Features

Faster-COCO-Eval goes beyond basic evaluation with these advanced capabilities:

Core Evaluation

  • Drop-in pycocotools replacement - No code changes needed
  • Support for all COCO metric types: bbox, segm, keypoints
  • LVIS (Large Vocabulary Instance Segmentation) evaluation
  • CrowdPose and custom keypoint datasets
  • Multiple IoU types: standard, rotated, and custom IoU definitions

Advanced Visualization

  • Error visualization: See where your model is making mistakes
  • Annotation display: Visualize ground truth and predictions together
  • Metric curves: Precision-recall curves, class-wise performance
  • Confusion matrices and error analysis
  • Interactive Jupyter notebook examples

Modern Integrations

  • PyTorch/TorchVision compatibility
  • Seamless integration with mmdetection, Detectron2, and YOLO frameworks
  • Distributed evaluation support
  • Memory optimized for large datasets

Additional Tools

  • Boundary evaluation for segmentation tasks
  • Custom dataset support
  • Comprehensive API documentation
  • Extensive test coverage and reliability

✅ Testing & Reliability

Faster-COCO-Eval prioritizes correctness and reliability through extensive testing:

Comprehensive Test Suite

  • 90+ automated tests covering all functionality
  • Exact equality validation against pycocotools across all metrics
  • Continuous integration on Python 3.9-3.13
  • Edge case coverage including boundary conditions and error handling

Extensive PyCocoTools Comparison

New comprehensive tests validate exact numerical equality with pycocotools:

  • Object Detection: Tests with 10-100 images, hundreds to thousands of annotations
  • Instance Segmentation: RLE mask encoding and pixel-level IoU validation
  • Keypoint Detection: 17-keypoint pose estimation with varied visibility
  • Multiple Scenarios: Small/medium/large objects, various confidence distributions
  • Edge Cases: Perfect predictions, low-confidence detections, mixed object sizes

All tests confirm bit-for-bit identical results between faster_coco_eval and pycocotools, giving you confidence to use this library as a drop-in replacement while gaining 3-4x performance improvements.

See tests/README.md for detailed test documentation.

📚 Comprehensive Documentation

Usage Examples

Explore practical, runnable examples in Jupyter notebooks:

Detailed Documentation

⭐ Star History

Star History Chart

📄 License

Faster-COCO-Eval is distributed under the Apache 2.0 license. See LICENSE for more information.

📚 Citation

If you use Faster-COCO-Eval in your research, please cite:

@article{faster-coco-eval,
  title   = {{Faster-COCO-Eval}: Faster and Enhanced COCO Evaluation Library},
  author  = {MiXaiLL76},
  year    = {2024}
}

🤝 Contributing

We welcome contributions! Check out our CONTRIBUTING.md for guidelines on how to get started.

🐛 Issues and Support

If you encounter any issues or have questions:

  1. Check the Wiki for common solutions
  2. Search existing issues
  3. Open a new issue with detailed information about your problem

🚀 Get Started Today

pip install faster-coco-eval[extra]

Replace pycocotools with Faster-COCO-Eval and experience evaluation at lightning speed!

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

faster_coco_eval-1.7.2.tar.gz (103.8 kB view details)

Uploaded Source

Built Distributions

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

faster_coco_eval-1.7.2-cp313-cp313-win_arm64.whl (317.0 kB view details)

Uploaded CPython 3.13Windows ARM64

faster_coco_eval-1.7.2-cp313-cp313-win_amd64.whl (323.9 kB view details)

Uploaded CPython 3.13Windows x86-64

faster_coco_eval-1.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (587.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

faster_coco_eval-1.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (583.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

faster_coco_eval-1.7.2-cp313-cp313-macosx_11_0_arm64.whl (357.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

faster_coco_eval-1.7.2-cp312-cp312-win_arm64.whl (316.9 kB view details)

Uploaded CPython 3.12Windows ARM64

faster_coco_eval-1.7.2-cp312-cp312-win_amd64.whl (323.8 kB view details)

Uploaded CPython 3.12Windows x86-64

faster_coco_eval-1.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

faster_coco_eval-1.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (583.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

faster_coco_eval-1.7.2-cp312-cp312-macosx_11_0_arm64.whl (357.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

faster_coco_eval-1.7.2-cp311-cp311-win_arm64.whl (319.6 kB view details)

Uploaded CPython 3.11Windows ARM64

faster_coco_eval-1.7.2-cp311-cp311-win_amd64.whl (321.7 kB view details)

Uploaded CPython 3.11Windows x86-64

faster_coco_eval-1.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

faster_coco_eval-1.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (583.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

faster_coco_eval-1.7.2-cp311-cp311-macosx_11_0_arm64.whl (358.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

faster_coco_eval-1.7.2-cp310-cp310-win_arm64.whl (318.3 kB view details)

Uploaded CPython 3.10Windows ARM64

faster_coco_eval-1.7.2-cp310-cp310-win_amd64.whl (320.6 kB view details)

Uploaded CPython 3.10Windows x86-64

faster_coco_eval-1.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

faster_coco_eval-1.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (580.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

faster_coco_eval-1.7.2-cp310-cp310-macosx_11_0_arm64.whl (355.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

faster_coco_eval-1.7.2-cp39-cp39-win_arm64.whl (315.1 kB view details)

Uploaded CPython 3.9Windows ARM64

faster_coco_eval-1.7.2-cp39-cp39-win_amd64.whl (327.3 kB view details)

Uploaded CPython 3.9Windows x86-64

faster_coco_eval-1.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

faster_coco_eval-1.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (581.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

faster_coco_eval-1.7.2-cp39-cp39-macosx_11_0_arm64.whl (355.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

faster_coco_eval-1.7.2-cp38-cp38-win_amd64.whl (320.1 kB view details)

Uploaded CPython 3.8Windows x86-64

faster_coco_eval-1.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

faster_coco_eval-1.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (579.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

faster_coco_eval-1.7.2-cp38-cp38-macosx_11_0_arm64.whl (355.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

faster_coco_eval-1.7.2-cp37-cp37m-win_amd64.whl (321.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

faster_coco_eval-1.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (589.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

faster_coco_eval-1.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (609.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

Details for the file faster_coco_eval-1.7.2.tar.gz.

File metadata

  • Download URL: faster_coco_eval-1.7.2.tar.gz
  • Upload date:
  • Size: 103.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faster_coco_eval-1.7.2.tar.gz
Algorithm Hash digest
SHA256 7f06cad6d60a4624c1e4a479b2d612be3e98565fc0dd4c8b41dabd5bdfe45557
MD5 383116de6625c8ab15a2bec865352cd8
BLAKE2b-256 9f761e6a6abef23d1c736124482a7e4c58579509914264dc19ee5f513f54d4b6

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ff1768f6593956c882defc3a4de47130c4ca0827530ef83453136ef52b4e0357
MD5 c4d01143165bf65d624f1f7623f23965
BLAKE2b-256 e794a20d5ad59e43b7f69955c64c80e127bdc7c75eca65adb03bde1683ee2340

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 303e84dd2f8f8d96c2f4134e74c9b3ab2a7fa25dc59d0d4773a477b561a82ceb
MD5 d0d0b4fb8bc689dee1c7079064ceceb1
BLAKE2b-256 6975983ad205d0f26db79e6088485f1d138c90d7432dfd410c6632edef87651e

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7b925a8e09ff02c31a9b2d60227db63d2e5641a24c98788f51238c1736b2a13
MD5 6413b760f03964c68e7b6f4efd21d748
BLAKE2b-256 0ad2fed28fc682b4d0e79506e4e3671ba248e67dad2b0210c8f3009f88f9b5d9

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8237eadc146f8589c31f7e3f22a65a7008813516940805be44bc55085f7415ee
MD5 912c847c2959b7879e80e7cbb0cfd387
BLAKE2b-256 03b96e262051931d6f17f491d6d185cc65d813cfaf6b408bb02ecd5613a995f2

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cc42d18ca001bca4861920f0fd3992b4f488f765da7ae0a23c6715e1ba68e31
MD5 2a7889ba1578f6e0219ee6de34945f83
BLAKE2b-256 5b396a13fdd23670f28eee6a2e820b00bda120fb5594902bc6571c765a050ff1

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e333c5f9b0047907ab4ecd2590ef023c92787fbfa4adb393c0122e02174abefd
MD5 e757342962e62d48134c37dca03e8e0b
BLAKE2b-256 9ab9faee4d2bf28810dd11922cad137ba5de9a3dd290651886217b9a529c368a

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 71de34e5a56a1bd487599d943821691c5c5dc46cac1e9a5acc784fab80cc06f7
MD5 2abe2f237c1873e75696ad97f69a712e
BLAKE2b-256 de59a7b8c1f45c3cac9f25dcaa3a307f8902d75edef452f197a4940a1b896592

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a77a5dc5615b6519791e2243beb353a7c4f7ee4e9234b813a5fc276512d9f39
MD5 9d9a948f91425cae12561dad4f9c1c0f
BLAKE2b-256 29fc35048c6446b07df92fad6078ac9d6ff3d4a34d910e6a1ca2066024919e3e

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d323acfcfb70096d053bcbc38ebbb8244f8b95a660e7c2579b8f0bfc0a023c51
MD5 d1f5f6fb9ff233711ac816e7733bc8f8
BLAKE2b-256 5fa9f0f902f84a900bdff1768065c5aa881a49cc683b3f081b79046d4be62717

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0c2cbe9b86b772b2bafd345f09f746f818dbf778c076044e007bbf8c01da643
MD5 1d6a91184cb91606e8d6ca746b9998b0
BLAKE2b-256 3d8768e110a852b08b9580fa6b968706a8e416f0a925d580e7bce8bfd4187d9d

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0e0bf19fdcc8dd2ea08b761ce03178fbbee1525b04296f7b90c9a0a07a104f84
MD5 98e2533e5f1730668d638b40fb2b7484
BLAKE2b-256 6235039ae826bd58610dc6cd2aa1aa91ab6f3835c7ab854df23ed87e4169686e

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1cfe43beafd16622845317b50233c84d8da33b5034ef1ac7d5e76a181631d875
MD5 bc539bb401204153f807beddc986c08c
BLAKE2b-256 48bdd1264568620b9b22861594aa29f0a8ce2249476a2532945930bcf5f134a0

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb056f386e636584eeba166454f928f522dbd197cd1bd583de46f765e81758d1
MD5 369d19dd81ab62a82d4ade77f1ac6cb6
BLAKE2b-256 540eb0813e0220501805178841b49d9e2ebfe739bfd0001f5e5d0467725b993d

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19ef06f197b40e48bfa815b4024dbbb3ed7c0579edb0e41522248343e85154a2
MD5 8cfb4ddcd1d601a537f51e130f9c4aa4
BLAKE2b-256 935b5c9b2ba525fe8e9cbfeeafc67ba0f9fb7d2aac1e6f21e1f01aaf1e876681

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbb61508d2695bdedb9529cad1916e24a309419214133babaee63f9ed412d468
MD5 87a33b17dcbe884eecb010abc0d338a4
BLAKE2b-256 a4dfc2e12f6d3c4053032708e4009be90a6cef91c243c025888b983ec2658c03

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1e286b7dbce43792f2e1204e3abd41cbed2e3795ca0286ffffd55de4f15a506b
MD5 fb71f001a37b261e39b4d09f550dbdaf
BLAKE2b-256 beee256f6f2e80f0b1c7693ea6a3d58e47a8985fac8836e047ce308ca8f85869

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d9dd0ddf59bfc215a93591fa812b97ece01f4f1514ff7e8c9b1914bce158e86d
MD5 86553256a86d8a1d44055e741918df42
BLAKE2b-256 7362b7f322b203903ab45d3d28299d5a50bf21666565ab50846af9626347517b

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35a43a57d89551960ab9950f2e1a44f5040ada5becef47367a530e0cf4ab474b
MD5 08b0e25fa95c94515e232ccd96bf17c8
BLAKE2b-256 b0f7a17d637a54d1af4b79bc04d7c61d8a9c286287561c878edb1134a112028b

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c8231e0234b733eec66bd9ea86445c52f9f0283f36a986a4c35711bc074b99b
MD5 90dd8a27c392ad734bc59b03e36cfa3c
BLAKE2b-256 2fa9c49a6d9bbe17a831f698cbed3813bcd03dfd052603794f5624eb172e05b5

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f44282b348291c91eca76edaa62eb88532efb78a317a14c4ef4c0104544a431
MD5 185a85ad4f5880b4ea23522a243c908a
BLAKE2b-256 2c3e4ac3605dd3d13d615586c59557e5ea58f0ab5d83e3fbde426da3a553dc28

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 bb183ad39b624a8bf426c769f39a7d69e1daaa5aa7725e7bcac91c3bfaa90e80
MD5 b9ec61f4f9ba0431280135b0fc010e7d
BLAKE2b-256 ffad733066c478494c7619a3d67e545df44c6c174a359bb09d49024a8841ef00

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1d2c4343077b51d5f463c2e8df0ee5720730225c5b9409641fa26798e8db50aa
MD5 fae513509dcd317cc8fee7287a256776
BLAKE2b-256 91a81e506181c794afdd4a3f51a9f4581fefadbc756e0524dcf0a2e1b568ded3

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fc7b641d31b399e808303469bd1494425baed9fd03a3d2d1b9dfcf91a4c9764
MD5 fad12660ae68e47d49e1f2b49d674c35
BLAKE2b-256 a2bfa678f89e72946f4c7f1cac88b2cf3e49e58579f058dad5f45a6184ce7658

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6e5a28e191723e1651950111a3e699fe9008fa66015c03db1cced10893d4393
MD5 b11233b7816daa745ad3b7f71869d153
BLAKE2b-256 7d399e0ff8a977786a6df243b9f968999467637cf57860e802939aff58fb4cd6

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 052d14f971dd4ed1ba2b23b1e4a8501489326ee673ee61087c36dc9055881f97
MD5 f66f4df26e9f224e5f4b092fcd39eb71
BLAKE2b-256 2c29b882fedd99a56d555959ec5a149605f6842ac6f376cd2cb4a03ae8c3b59b

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ffb16920f9e30d2babc3e6a167da4b511ac9b25dc4b74152a431878c63af71a5
MD5 2cd1df47a0e6db83db7991af30f6f701
BLAKE2b-256 f94f08c0bdbb6854d9280890fb33ae378dcf3ab285d17a5e8047db2a40d8c40a

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76451a8d77e3441201d13daaac9a31aefb5a442aa2065e7d32b3b785b86cb5d0
MD5 dc4711d3770891933e3b236f16983fb7
BLAKE2b-256 7a2929fd7fca52aab63508584eedd68c860249e96f8e7cd59a304195ad9d2106

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b6d4a4f7b972011b59c0bd881c0adbd09460b64608e720f1024b711829b1b06
MD5 8f81f664b208220f940cfe1821774e8c
BLAKE2b-256 34c4cefcc418431264dd9be0027a29d5401ccbb177d16177df693095f5e37472

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16309c7f441eba77544447a0b7c8967c87ba6dec8ffbcd319f5d85565a9cef73
MD5 374f0a21949dde4369b250c8091b382a
BLAKE2b-256 5af010579fa31ec95770b2269792d4c6d67ce33ccb1fc58d6896a1f5cc24e75a

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 97c0899ce7aea2a0e8888335105fd6c67cffe8405a41bd15d03133669a4dbe97
MD5 f10a4cfa77c404f7754c9e7cbf8d4bcd
BLAKE2b-256 50dae5adf57a6a385d2a69f587a368d573c4fa2a43d95ace93d358df8d9009e1

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ea3176ebf5fe192a787b597610fb8c881f1b6e4fbbc61027301b5bbe62c31df
MD5 0a2d7c56ca396636f33fdb72a0f57346
BLAKE2b-256 bb48bf289bbd3f77f94d66c8bc1a0cb38b72d2da56bc388c07e9cf623a74911f

See more details on using hashes here.

File details

Details for the file faster_coco_eval-1.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faster_coco_eval-1.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6daa8b5d28fef800978c7fc5a41ce6ff79d146cac69ffe79866fedf7dc11e4c
MD5 e5291762f1dc87537bdebc70f301beb1
BLAKE2b-256 32c747e2ba4fc1a7f221d293b326c2f0efba0175436b4a2d00234fbb3ee97d26

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