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].
[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
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
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 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1c63c85c4cc5ea620ee6d9f57525a255155cdd4ebc9734a0c260e47080ac1ad |
|
MD5 | ca8d6d4327f1fd3b8ea774b455c5cdcc |
|
BLAKE2b-256 | 0e10257f3aa42e9c089283005c2548f2565ed0a60fc7796b6adfe60e7756bcd4 |
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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 329d764e2410a066577480342586baab13ff8b994a95a058d761a69d3f89872a |
|
MD5 | 84df016ae47edf6d78bf82a8d98e4762 |
|
BLAKE2b-256 | c15820b2a2ab966ca5530b82d8a954a18ab7f9fc60f364869e9d75782340d2a7 |