ScipyNelderMead#
- class ScipyNelderMead[source]#
Bases:
OptimizerAn optimizer that uses the Nelder-Mead simplex algorithm from SciPy.
This class serves as a wrapper for the scipy.optimize.minimize function, specifically configured to use the ‘Nelder-Mead’ method. The Nelder-Mead algorithm is a direct search method that does not require gradient information, making it suitable for non-differentiable or noisy objective functions.
Methods
minimize(target, params)Minimizes a target function using the Nelder-Mead algorithm.