Skip to main content

Python benchmark functions for Optimization with NumPy, TensorFlow and PyTorch support.

Reason this release was yanked:

Package only included top-level imports.

Project description

Python NumPy TensorFlow PyTorch
Python Benchmark Functions for Optimization

Quick StartBenchmark Functions

[!NOTE]
PyTorch support is underway (#1)!

py-benchamrk-functions is a simple library that provides benchmark functions for global optimization. It exposes implementations in major computing frameworks such as NumPy, TensorFlow and PyTorch. All implementations support batch-evaluation of coordinates, allowing for performatic evaluation of candidate solutions in the search space. The main goal of this library is to provide up-to-date implementations of multiple common benchmark functions in the scientific literature.

Quick Start

Installation

Start by installing the library using your preferred package manager:

python -m pip install --upgrade pip uv
python -m uv pip install py_benchmark_functions
# TensorFlow and Torch backend are optional and can be enable with:
python -m uv pip install py_benchmark_functions[tensorflow]
python -m uv pip install py_benchmark_functions[torch]

You can check if the library was correctly installed by running the following:

import py_benchmark_functions as bf

print(bf.available_backends())
# Output: {'numpy', 'tensorflow'}

print(bf.available_functions())
# Output: ['Ackley', 'Alpine2', 'BentCigar', 'Bohachevsky', 'Brown', 'ChungReynolds', 'Csendes', 'Deb1', 'Deb3', 'DixonPrice', 'Exponential', 'Griewank', 'Levy', 'Mishra2', 'PowellSum', 'Qing', 'Rastrigin', 'Rosenbrock', 'RotatedHyperEllipsoid', 'Salomon', 'Sargan', 'SchumerSteiglitz', 'Schwefel', 'Schwefel12', 'Schwefel222', 'Schwefel223', 'Schwefel226', 'Sphere', 'StrechedVSineWave', 'SumSquares', 'Trigonometric2', 'WWavy', 'Weierstrass', 'Whitley', 'Zakharov']

Instantiating and using Functions

The library is designed with the following entities:

  • core.Function: class that represents a benchmark function. An instance of this class represents an instance of the becnmark function for a given domain (core.Domain) and number of dimensions/coordinates.
  • core.Transformation: class that represents a transformed (i.e., shifted, scaled, etc) function. It allows for programatically building new functions from existing ones.
  • core.Metadata: class thata represent metadata about a given function (i.e., known global optima, default search space, default parameters, etc). A transformation inherits such metadata from the base function.

The benchmark functions can be instantiated in 3 ways:

  1. Directly importing from py_benchmark_functions.imp.{numpy,tensorflow,torch} (e.g., from py_benchmark_functions.imp.numpy import AckleyNumpy);
from py_benchmark_functions.imp.numpy import AckleyNumpy

fn = AckleyNumpy(dims=2)
print(fn.name, fn.domain)
# Output: Ackley Domain(min=[-35.0, -35.0], max=[35.0, 35.0])

print(fn.metadata)
Output: Metadata(default_search_space=(-35.0, 35.0), references=['https://arxiv.org/abs/1308.4008', 'https://www.sfu.ca/~ssurjano/optimization.html'], comments='', default_parameters={'a': 20.0, 'b': 0.2, 'c': 6.283185307179586}, global_optimum=0.0, global_optimum_coordinates=<...>)
  1. Using the global get_fn, get_np_function or get_tf_function from py_benchmark_functions;
import py_benchmark_functions as bf

fn = bf.get_fn("Zakharov", 2)
print(fn, type(fn))
# Output: Zakharov(domain=Domain(min=[-5.0, -5.0], max=[10.0, 10.0])) <class 'py_benchmark_functions.imp.numpy.ZakharovNumpy'>

fn1 = bf.get_np_function("Zakharov", 2)
print(fn1, type(fn1))
# Output: Zakharov(domain=Domain(min=[-5.0, -5.0], max=[10.0, 10.0])) <class 'py_benchmark_functions.imp.numpy.ZakharovNumpy'>

fn2 = bf.get_tf_function("Zakharov", 2)
print(fn2, type(fn2))
# Output: Zakharov(domain=Domain(min=[-5.0, -5.0], max=[10.0, 10.0])) <class 'py_benchmark_functions.imp.tensorflow.ZakharovTensorflow'>
  1. Using the Builder class;
from py_benchmark_functions import Builder

fn = Builder().function("Alpine2").dims(4).transform(vshift=1.0).tensorflow().build()
print(fn, type(fn))
# Output: Transformed(Alpine2) <class 'py_benchmark_functions.imp.tensorflow.TensorflowTransformation'>

Regardless of how you get an instance of a function, all of them define the __call__ method, which allows them to be called directly. Every __call__ receives an x as argument (for NumPy, x should be an np.ndarray, for Tensorflow a tf.Tensor, and for PyTorch a torch.Tensor). The shape of x can either be (batch_size, dims) or (dims,), while the output is (batch_size,) or () (a scalar). Those properties are illustrated below:

import py_benchmark_functions as bf
import numpy as np

fn = bf.get_fn("Ackley", 2)
x = np.array([0.0, 0.0], dtype=np.float32)

print(fn(x))
# Output: -9.536743e-07

x = np.expand_dims(x, axis=0)
print(x, fn(x))
# Output: [[0. 0.]] [-9.536743e-07]

x = np.repeat(x, 3, axis=0)
print(x, fn(x))
# Output:
# [[0. 0.]
# [0. 0.]
# [0. 0.]] [-9.536743e-07 -9.536743e-07 -9.536743e-07]

Benchmark Functions

The following table lists the functions officially supported by the library. If you have any suggestion for new functions to add, we encourage you to open an issue or pull request.

Function NumPy TensorFlow PyTorch Reference Plot
Ackley ✔️ ✔️ [1], [2]
Alpine 2 ✔️ ✔️ [1]
Bent Cigar ✔️ ✔️ [3]
Bohachevsky ✔️ ✔️ [1]
Brown ✔️ ✔️ [1]
Chung Reynolds ✔️ ✔️ [1]
Csendes ✔️ ✔️ [1]
Deb 1 ✔️ ✔️ [1], [4]
Deb 3 ✔️ ✔️ [1]
Dixon & Price ✔️ ✔️ [1], [2]
Exponential ✔️ ✔️ [1]
Griewank ✔️ ✔️ [1]
Levy ✔️ ✔️ [1]
Mishra 2 ✔️ ✔️ [1], [5]
Powell Sum ✔️ ✔️ [1]
Qing ✔️ ✔️ [1]
Rastrigin ✔️ ✔️ [3]
Rosenbrock ✔️ ✔️ [1]
Rotated Hyper-Ellipsoid ✔️ ✔️ [2]
Salomon ✔️ ✔️ [1]
Sargan ✔️ ✔️ [1]
Sum Squares ✔️ ✔️ [1]
Schwefel ✔️ ✔️ [1]
Schwefel 1.2 ✔️ ✔️ [1]
Schwefel 2.22 ✔️ ✔️ [1]
Schwefel 2.23 ✔️ ✔️ [1]
Schwefel 2.26 ✔️ ✔️ [1]
Schumer Steiglitz ✔️ ✔️ [1]
Sphere ✔️ ✔️ [1]
Streched V Sine Wave ✔️ ✔️ [1]
Trigonometric 2 ✔️ ✔️ [1]
Weierstrass ✔️ ✔️ [1]
Whitley ✔️ ✔️ [1], [5]
W Wavy ✔️ ✔️ [1]
Zakharov ✔️ ✔️ [1]

[1]: Jamil, M., & Yang, X.-S. (2013). A Literature Survey of Benchmark Functions For Global Optimization Problems. arXiv. https://doi.org/10.48550/ARXIV.1308.4008

[2]: https://www.sfu.ca/~ssurjano/optimization.html

[3]: Special Session & Competition on Single Objective Bound Constrained Optimization (CEC2021)

[4]: https://al-roomi.org/benchmarks/unconstrained/n-dimensions/231-deb-s-function-no-01

[5]: https://infinity77.net/global_optimization/test_functions_nd_M.html

All the images can be generated using the Drawer utility.

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

py_benchmark_functions-0.1.0.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

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

py_benchmark_functions-0.1.0-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file py_benchmark_functions-0.1.0.tar.gz.

File metadata

File hashes

Hashes for py_benchmark_functions-0.1.0.tar.gz
Algorithm Hash digest
SHA256 89ee08a3e80e00d34dddc07b3507d559541c003a7525a8ca32474dc6250f8797
MD5 5fbddcb8f84bb36ff46d337962890a24
BLAKE2b-256 50e3f99303cfdccd47bc3aed30d49152a72c0b5abdfd72214fa97e8827511450

See more details on using hashes here.

File details

Details for the file py_benchmark_functions-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for py_benchmark_functions-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 22efe7adaf1b22f8fc79d2d2209d2b11c28d537f6a5338dfa4d3e3cfc93086b9
MD5 8e22123d751337b9cc5f556098528d2f
BLAKE2b-256 09dc13bdb676d3b8472a1ed9f8b01973656cdd16b9d0c1a78e644fbca1739a96

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