A package for benchmarking the performance of arbitrary functions
Project description
Bencher
Continuous Integration Status
Install
pip install holobench
Intro
Bencher is a tool to make it easy to benchmark the interactions between the input parameters to your algorithm and its resulting performance on a set of metrics. It calculates the cartesian product of a set of variables
Parameters for bencher are defined using the param library as a config class with extra metadata that describes the bounds of the search space you want to measure. You must define a benchmarking function that accepts an instance of the config class and return a dictionary with string metric names and float values.
Parameters are benchmarked by passing in a list N parameters, and an N-Dimensional tensor is returned. You can optionally sample each point multiple times to get back a distribution and also track its value over time. By default the data will be plotted automatically based on the types of parameters you are sampling (e.g, continous, discrete), but you can also pass in a callback to customize plotting.
The data is stored in a persistent database so that past performance is tracked.
Assumptions
The input types should also be of one of the basic datatypes (bool, int, float, str, enum, datetime) so that the data can be easily hashed, cached and stored in the database and processed with seaborn and xarray plotting functions. You can use class inheritance to define hierarchical parameter configuration class types that can be reused in a bigger configuration classes.
Bencher is designed to work with stochastic pure functions with no side effects. It assumes that when the objective function is given the same inputs, it will return the same output +- random noise. This is because the function must be called multiple times to get a good statistical distribution of it and so each call must not be influenced by anything or the results will be corrupted.
Pseudocode of bencher
Enumerate a list of all input parameter combinations
for each set of input parameters:
pass the inputs to the objective function and store results in the N-D array
get unique hash for the set of inputs parameters
look up previous results for that hash
if it exists:
load historical data
combine latest data with historical data
store the results using the input hash as a key
deduce the type of plot based on the input and output types
return data and plot
Demo
if you have pixi installed you can run a demo example with:
pixi run demo
An example of the type of output bencher produces can be seen here:
https://dyson-ai.github.io/bencher/
Examples
Most of the features that are supported are demonstrated in the examples folder.
Start with example_simple_float.py and explore other examples based on your data types:
- example_float.py: More complex float operations
- example_float2D.py: 2D float sweeps
- example_float3D.py: 3D float sweeps
- example_categorical.py: Sweeping categorical values (enums)
- example_strings.py: Sweeping categorical string values
- example_float_cat.py: Mixing float and categorical values
- example_image.py: Output images as part of the sweep
- example_video.py: Output videos as part of the sweep
- example_filepath.py: Output arbitrary files as part of the sweep
- and many others
Documentation
API documentation can be found at https://bencher.readthedocs.io/en/latest/
More documentation is needed for the examples and general workflow.
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 Distribution
File details
Details for the file holobench-1.30.1.tar.gz
.
File metadata
- Download URL: holobench-1.30.1.tar.gz
- Upload date:
- Size: 93.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58ae96f34df31cee150c6c69e56869a33119e6c94dbabea6840ede925c63614d |
|
MD5 | 8ba4c50550dd14e91e21b4dfc3671fee |
|
BLAKE2b-256 | 1eb135d76f3bed5382ada96af898a52db8cdea4b3a0f1bca0be5319890324a17 |
File details
Details for the file holobench-1.30.1-py2.py3-none-any.whl
.
File metadata
- Download URL: holobench-1.30.1-py2.py3-none-any.whl
- Upload date:
- Size: 136.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0088a63f108d4861390f685761f2b3764a3c091e09bbbfb148aa497f91a8c0c |
|
MD5 | c7053a0c6441fe67ed56dba2af32acde |
|
BLAKE2b-256 | 7434e8cb91f5cc0a3025142e364caf1fc5ffa0facef35f926dd4f85abece9f74 |