Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fchollet/nelder-mead
Pure Python/Numpy implementation of the Nelder-Mead algorithm.
https://github.com/fchollet/nelder-mead
Last synced: 27 days ago
JSON representation
Pure Python/Numpy implementation of the Nelder-Mead algorithm.
- Host: GitHub
- URL: https://github.com/fchollet/nelder-mead
- Owner: fchollet
- License: gpl-2.0
- Created: 2015-03-09T19:01:54.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-04-24T19:30:09.000Z (almost 4 years ago)
- Last Synced: 2024-12-24T19:52:05.594Z (about 1 month ago)
- Language: Python
- Size: 118 KB
- Stars: 122
- Watchers: 17
- Forks: 42
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-numerics - François Chollet (python)
README
# nelder-mead
Pure Python/Numpy implementation of the Nelder-Mead optimization algorithm.
## Why?
For inclusion in projects with limited support for 3rd party libraries, such as PyPy projects, Google App Engine projects, etc.
To the best of my knowledge the only open-source implementation of Nelder-Mead is the one packaged with SciPy. However SciPy is not available in PyPy (yet), or on Google App Engine. But both PyPy and GAE support Numpy, and can run the present Nelder-Mead implementation.
## Reference
See the description of the Nelder-Mead algorithm on Wikipedia: https://en.wikipedia.org/wiki/Nelder%E2%80%93Mead_method