Forgot to instantiate the rng.
Opened this issue · 2 comments
jgh9094 commented
We are forgetting to add 'rng = np.random.default_rng(rng)' to instantiate a new or old rng.
perib commented
this is technically not needed since it is handled by the gradual_hyperparameter_update function where the rng is used. but we could just have an extra check for clarity?
jgh9094 commented
That's a good point, we don't need to instantiate the rng in the mutation function since we don't do anything with it!