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
If you want to fix the random seed, you need to use the global numpy.random.seed. We should transition towards random generator support. The change should not be too complicated. We just need to expose rng and use methods on rng to draw random samples instead of current functions.
I am not aware of where exactly there are call to numpy.random but it should be call to some random number generator fed in the function.
Typically pointpats.random.poisson( rng=np.random.default_rng(???)) or specify a seed or something
Can do the change but I am not aware if it would break anything or would be long and painful change.
The text was updated successfully, but these errors were encountered: