项目作者: pablormier

项目描述 :
Yet another black-box optimization library for Python
高级语言: Jupyter Notebook
项目地址: git://github.com/pablormier/yabox.git
创建时间: 2017-07-14T12:57:43Z
项目社区:https://github.com/pablormier/yabox

开源协议:Apache License 2.0

下载


DOI

Yet another black-box optimization library for Python

Description

Yabox is a very small library for black-box (derivative free) optimization of functions that only depends on numpy and matplotlib for visualization. The library includes different stochastic algorithms for minimizing a function f(X) that does not need to have an analytical form, where X = {x1, ..., xN}.
The current version of the library includes the Differential Evolution algorithm and a modified version for parallel evaluation.

Example of minimization of the Ackley function (using Yabox and Differential Evolution):

Ackley Function

Installation

Yabox is in PyPI so you can use the following command to install the latest released version:

  1. pip install yabox

Basic usage

Pre-defined functions

Yabox includes some default benchmark functions used in black-box optimization, available in the package yabox.problems. These functions also include 2D and 3D plotting capabilities:

  1. >>> from yabox.problems import Levy
  2. >>> problem = Levy()
  3. >>> problem.plot3d()

Levy Function

A problem is just a function that can be evaluated for a given X:

  1. >>> problem(np.array([1,1,1]))
  2. 0.80668910823394901

Optimization

Simple example minimizing a function of one variable x using Differential Evolution, searching between -10 <= x <= 10:

  1. >>> from yabox import DE
  2. >>> DE(lambda x: sum(x**2), [(-10, 10)]).solve()
  3. (array([ 0.]), 0.0)

Example using Differential Evolution and showing progress (requires tqdm)

Optimization example

Yabox includes a parallel version of Differential Evolution. Import PDE instead of DE:

  1. >>> from yabox import PDE
  2. >>> PDE(lambda x: sum(x**2), [(-10, 10)]).solve()
  3. (array([ 0.]), 0.0)

For more examples, check the notebooks included in the project

About

This library is inspired in the scipy’s differential evolution implementation. The main goal of Yabox is to include a larger set of stochastic black-box optimization algorithms plus many utilities, all in a small library with minimal dependencies.