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
The numpy seed should be set to None after setting a specified seed from several methods in smash. Otherwise, random state doesn't work properly in some cases, for example:
model.set_nn_parameters_weight(initializer="glorot_normal", random_state=0) #random seed set for NN1model.optimize("ann") #NN2 is initialized with a specified seed from the first line instead of random one
The text was updated successfully, but these errors were encountered:
The numpy seed should be set to None after setting a specified seed from several methods in
smash
. Otherwise, random state doesn't work properly in some cases, for example:The text was updated successfully, but these errors were encountered: