Question

Does anyone know which optimization algorithm specifically is implemented in scipy.optimize.leastsq?

Was it helpful?

Solution

According to the documentation:

“leastsq” is a wrapper around MINPACK’s lmdif and lmder algorithms.

So (as @tillsten points out) that’s a Levenberg–Marquardt implementation.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top