Skip to main content

Grid-restrained Nelder-Mead algorithm

Project description

GridNM

Grid-Restrained Nelder-Mead Algorithm

Description

Python implementation of grid-restrained variant of the Nelder-Mead algorithm, a derivative-free, unconstrained optimization algorithm that provably converges to a stationary point. See [1] for details.

This implementation has minimal dependencies and integrates well with the SciPy library. The code is fully typed, passes mypy, and comes with basic unit tests.

The MATLAB implementation [2] by the authors of [1] and the PyOPUS implementation [3] were used for reference. Variable names and default parameter were mostly taken from [1]. The adaptive parameters are as suggest in [4].

[1] Bűrmen, Árpád & Puhan, Janez & Tuma, Tadej. (2006). Grid Restrained Nelder-Mead Algorithm. Computational Optimization and Applications. 34. 359-375.

[2] https://fides.fe.uni-lj.si/~arpadb/software-grnm.html

[3] http://spiceopus.si/pyopus/doc/optimizer.grnm.html?highlight=grnm#module-pyopus.optimizer.grnm

[4] Gao, F. and Han, L. Implementing the Nelder-Mead simplex algorithm with adaptive parameters. 2012. Computational Optimization and Applications. 51:1, pp. 259-277.

Installation

GridNM is available on PyPI and can be installed, for example, using pip:

pip install gridnm

Getting Started

Here is an example of how to use gridnm to minimize the 2D rosenbrock function:

from gridnm import GridNM
from scipy.optimize import rosen

# initial point
x0 = [-1.2, 1]

# create solver instance
gridnm = GridNM(rosen, x0)

# run solver
sol = gridnm.solve()

# print solution
print(f"x_opt = {sol.x}")

See the comments in src/gridnm/gridnm.py for options and parameters.

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

gridnm-1.0.1.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

gridnm-1.0.1-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file gridnm-1.0.1.tar.gz.

File metadata

  • Download URL: gridnm-1.0.1.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for gridnm-1.0.1.tar.gz
Algorithm Hash digest
SHA256 f1c63c85c4cc5ea620ee6d9f57525a255155cdd4ebc9734a0c260e47080ac1ad
MD5 ca8d6d4327f1fd3b8ea774b455c5cdcc
BLAKE2b-256 0e10257f3aa42e9c089283005c2548f2565ed0a60fc7796b6adfe60e7756bcd4

See more details on using hashes here.

File details

Details for the file gridnm-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: gridnm-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 7.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for gridnm-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 329d764e2410a066577480342586baab13ff8b994a95a058d761a69d3f89872a
MD5 84df016ae47edf6d78bf82a8d98e4762
BLAKE2b-256 c15820b2a2ab966ca5530b82d8a954a18ab7f9fc60f364869e9d75782340d2a7

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