Skip to main content

A collection of analytical benchmark functions in multiple fidelities

Project description

MF2: Multi-Fidelity-Functions

Package Info Status Support
PyPI version Build Status Documentation Status
Conda Coverage Status Gitter
PyPI - Python Version Codacy Badge
License: GPL v3 Project Status: Active – The project has reached a stable, usable state and is being actively developed.
DOI status

Introduction

The mf2 package provides consistent, efficient and tested Python implementations of a variety of multi-fidelity benchmark functions. The goal is to simplify life for numerical optimization researchers by saving time otherwise spent reimplementing and debugging the same common functions, and enabling direct comparisons with other work using the same definitions, improving reproducibility in general.

A multi-fidelity function usually reprensents an objective which should be optimized. The term 'multi-fidelity' refers to the fact that multiple versions of the objective function exist, which differ in the accuracy to describe the real objective. A typical real-world example would be the aerodynamic efficiency of an airfoil, e.g., its drag value for a given lift value. The different fidelity levels are given by the accuracy of the evaluation method used to estimate the efficiency. Lower-fidelity versions of the objective function refer to less accurate, but simpler approximations of the objective, such as computational fluid dynamic simulations on rather coarse meshes, whereas higher fidelity levels refer to more accurate but also much more demanding evaluations such as prototype tests in wind tunnels. The hope of multi-fildelity optimization approaches is that many of the not-so-accurate but simple low-fidelity evaluations can be used to achieve improved results on the realistic high-fidelity version of the objective where only very few evaluations can be performed.

The only dependency of the mf2 package is the numpy package.

Documentation is available at mf2.readthedocs.io

Installation

The recommended way to install mf2 is with Python's pip:

python3 -m pip install --user mf2

or alternatively using conda:

conda install -c conda-forge mf2

For the latest version, you can install directly from source:

python3 -m pip install --user https://github.com/sjvrijn/mf2/archive/master.zip

To work in your own version locally, it is best to clone the repository first, and additionally install the dev-requirements:

git clone https://github.com/sjvrijn/mf2.git
cd mf2
python3 -m pip install --user -e .[dev]

Example Usage

import mf2
import numpy as np

# set numpy random seed for reproducibility
np.random.seed(42)
# generate 5 random samples in 2D as matrix
X = np.random.random((5, 2))

# print high fidelity function values
print(mf2.branin.high(X))
# Out: array([36.78994906 34.3332972  50.48149005 43.0569396  35.5268224 ])

# print low fidelity function values
print(mf2.branin.low(X))
# Out: array([-5.8762639  -6.66852889  3.84944507 -1.56314141 -6.23242223])

For more usage examples, please refer to the full documentation on readthedocs.

Contributing

Contributions to this project such as bug reports or benchmark function suggestions are more than welcome! Please refer to CONTRIBUTING.md for more details.

Contact

The Gitter channel is the preferred way to get in touch for any other questions, comments or discussions about this package.

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

mf2-2020.8.0.tar.gz (31.6 kB view details)

Uploaded Source

Built Distribution

mf2-2020.8.0-py3-none-any.whl (40.9 kB view details)

Uploaded Python 3

File details

Details for the file mf2-2020.8.0.tar.gz.

File metadata

  • Download URL: mf2-2020.8.0.tar.gz
  • Upload date:
  • Size: 31.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.6.3

File hashes

Hashes for mf2-2020.8.0.tar.gz
Algorithm Hash digest
SHA256 d62ec9add32f295d202441ea3b91375156b855c069ddeb96ba757d4bbefebf74
MD5 9d583bac97ddae464908c0f575535398
BLAKE2b-256 11353e51c705f812cac749b5ab00ff7b912a1bbdf60221b2daeca1e83c1d3d0a

See more details on using hashes here.

File details

Details for the file mf2-2020.8.0-py3-none-any.whl.

File metadata

  • Download URL: mf2-2020.8.0-py3-none-any.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.6.3

File hashes

Hashes for mf2-2020.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7f7af75e629694d87fdf9cd31ac0c7edc61fc0c5a17cc358279ccc425a161581
MD5 61c9bac958376105e48ba4e0b8224f84
BLAKE2b-256 bd3587112b4ce3ab0f900f048dc79488c45aedb7c82a15656e085f5202d44290

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page