Reputation: 285
What is the main difference between minimize(method=’BFGS’)
and scipy.optimize.fmin_bfgs
? In which situations should one be preferred over the other?
Upvotes: 0
Views: 469
Reputation: 33522
It's the same function.
Choose the interface you prefer, minimize
usually being easier to use also allowing to swap out the algorithm if needed.
Upvotes: 2