Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olivierverdier/downhill-simplex
Implementation of the downhill simplex method (aka Nelder–Mead method)
https://github.com/olivierverdier/downhill-simplex
Last synced: about 5 hours ago
JSON representation
Implementation of the downhill simplex method (aka Nelder–Mead method)
- Host: GitHub
- URL: https://github.com/olivierverdier/downhill-simplex
- Owner: olivierverdier
- License: gpl-2.0
- Created: 2016-01-29T07:40:02.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-29T16:32:56.000Z (almost 9 years ago)
- Last Synced: 2023-10-20T22:10:35.613Z (about 1 year ago)
- Language: Python
- Size: 22.5 KB
- Stars: 12
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Downhill simplex optimisation algorithm
Pure Python/Numpy implementation of the downhill simplex optimisation algorithm.
## Why?
Mostly for educational purpose, if you want to experiment with the variations of the algorithms.
## Reference
See [the description of the downhill simplex (Nelder-Mead) algorithm on Wikipedia](https://en.wikipedia.org/wiki/Nelder%E2%80%93Mead_method).