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
NevergradRuntimeWarning: Bounds are 1.0 sigma away from each other at the closest, you should aim for at least 3 for better quality. errors.NevergradRuntimeWarning,
#1250
Open
xinhongri opened this issue
Sep 28, 2021
· 1 comment
Hi @xinhongri
The default sigma/step size is 1, but the range of your bounds is 1 - 0 = 1, so that you're pretty sure to hit the bounds rather quickly. Either:
set bounds within the constructor so that sigma is initialized automatically with a good value: ng.p.Array(lower=0, upper=1, shape=(3,)) (the default init value will be the middle so it's simpler to just provide the shape in this case)
Steps to reproduce
why does it happen?
how to solve?
The text was updated successfully, but these errors were encountered: