Skip to main content

A small framework for benchmarking machine learning models.

Project description

nnbench: A small framework for benchmarking machine learning models

Welcome to nnbench, a framework for benchmarking machine learning models. The main goals of this project are

  1. To provide a portable, easy-to-use solution for model evaluation that leads to better ML experiment organization, and
  2. To integrate with experiment and metadata tracking solutions for easy adoption.

On a high level, you can think of nnbench as "pytest for ML models" - you define benchmarks similarly to test cases, collect them, and selectively run them based on model type, markers, and environment info.

What's new is that upon completion, you can stream the resulting data to any sink of your choice (including multiple at the same), which allows easy integration with experiment trackers and metadata stores.

See the quickstart for a lightning-quick demo, or the examples for more advanced usages.

Installation

⚠️ nnbench is an experimental project - expect bugs and sharp edges.

Install it directly from source, for example either using pip or uv:

pip install nnbench
# or
uv add nnbench

A ⚡️- quick demo

To understand how nnbench works, you can run the following in your Python interpreter:

# example.py
import nnbench
from nnbench.reporter import ConsoleReporter


@nnbench.benchmark
def product(a: int, b: int) -> int:
    return a * b


@nnbench.benchmark
def power(a: int, b: int) -> int:
    return a ** b


reporter = ConsoleReporter()
# first, collect the above benchmarks directly from the current module...
benchmarks = nnbench.collect("__main__")
# ... then run the benchmarks with the parameters `a=2, b=10`...
result = nnbench.run(benchmarks, params={"a": 2, "b": 10})
reporter.write(result)  # ...and print the results to the terminal.

# results in a table look like the following:
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┓
# ┃ Benchmark ┃ Value ┃ Wall time (ns) ┃ Parameters        ┃
# ┡━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━┩
# │ product   │ 20    │ 1917           │ {'a': 2, 'b': 10} │
# │ power     │ 1024  │ 583            │ {'a': 2, 'b': 10} │
# └───────────┴───────┴────────────────┴───────────────────┘

Watch the following video for a high level overview of the capabilities and inner workings of nnbench.

nnbench overview video thumbnail

For a more realistic example of how to evaluate a trained model with a benchmark suite, check the Quickstart. For even more advanced usages of the library, you can check out the Examples in the documentation.

Contributing

We encourage and welcome contributions from the community to enhance the project. Please check discussions or raise an issue on GitHub for any problems you encounter with the library.

For information on the general development workflow, see the contribution guide.

License

The nnbench library is distributed under the Apache-2 license.

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

nnbench-0.5.0.tar.gz (37.5 kB view details)

Uploaded Source

Built Distribution

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

nnbench-0.5.0-py3-none-any.whl (38.6 kB view details)

Uploaded Python 3

File details

Details for the file nnbench-0.5.0.tar.gz.

File metadata

  • Download URL: nnbench-0.5.0.tar.gz
  • Upload date:
  • Size: 37.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nnbench-0.5.0.tar.gz
Algorithm Hash digest
SHA256 5ede180dea2694d3ff58db01c29c86e8795a30af92fddcb96526f9f1bc9f54ff
MD5 52190af12b94d70afcb555a0cbbbb24f
BLAKE2b-256 0b6fbb3fbb988b3f578107764406a71e6c84944603378e2365f85634738023b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nnbench-0.5.0.tar.gz:

Publisher: release.yaml on aai-institute/nnbench

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nnbench-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: nnbench-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 38.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nnbench-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4c80984e1bd4cec6d3d8b81aaf9e1dcd7e6b1b175528ab6be050f42b60b9ea83
MD5 a6a312acaef64b20ca4cccfb49dec2a2
BLAKE2b-256 d2c036db3a576b56c0e947f67208fd0892adae7afb97e0a467dbda6fd8b89b35

See more details on using hashes here.

Provenance

The following attestation bundles were made for nnbench-0.5.0-py3-none-any.whl:

Publisher: release.yaml on aai-institute/nnbench

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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