Does anyone know which optimization algorithm specifically is implemented in scipy.optimize.leastsq?
According to the documentation:
“leastsq”
is a wrapper around MINPACK’slmdif
andlmder
algorithms.
So (as @tillsten points out) that’s a Levenberg–Marquardt implementation.