I am trying to use scipy.optimize.basinhopping
with a function b_log(x)
at point x=10
. I do not understand the meaning of "minimization_failures" below. Can anyone explain?
In [144]: scipy.optimize.basinhopping(b_log,10)
Out[144]:
nfev: 6969
minimization_failures: 101
fun: 420
x: array([10])
message: ['requested number of basinhopping iterations completed successfully']
njev: 1919
nit: 100