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