You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
scipy.optimize.fmin_slsqp is one of the solvers in the upcoming example_experiment_complete.py script. Run with a budget multiplier of 40, we see 38 sweeps over the bbob suite, 34 of them done only on the Step Ellipsoid f7, the last three of them only in 40D (the algorithm terminates, if I am not mistaken, always after one iteration with $D+1$ evaluations and we do 2 additional evaluations, hence the budget 40 x D is exhausted after 38 sweeps).
It would be nice to tweak the solver options such that the behavior becomes more reasonable also on f7.
The above repetitions "mess up" some of the median runtime crosses, that is, the example is good test when fixing #2287.
The text was updated successfully, but these errors were encountered:
I think fmin_slsqp fails on $f7$ because the (approximated) gradient is zero almost everywhere which means it terminates immediately. Not sure you can fix that by changing some parameter.
scipy.optimize.fmin_slsqp
is one of the solvers in the upcomingexample_experiment_complete.py
script. Run with a budget multiplier of 40, we see 38 sweeps over thebbob
suite, 34 of them done only on the Step Ellipsoid f7, the last three of them only in 40D (the algorithm terminates, if I am not mistaken, always after one iteration withIt would be nice to tweak the solver options such that the behavior becomes more reasonable also on f7.
The above repetitions "mess up" some of the median runtime crosses, that is, the example is good test when fixing #2287.
The text was updated successfully, but these errors were encountered: