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
Waiting for #5757 to be able to use Aesara's RandomStream (probably subclassing it so that it doesn't create default_updates).
This will also simplify the construction of SymbolicDistributions so that we can pass a RandomStream directly to them instead of having to ask how many RandomState variables it needs in advance:
Numpy docs advise using SeedSequence for spawning independent
bit_generators
: https://numpy.org/doc/stable/reference/random/parallel.htmlTheir method should be quite more robust to collisions than our naive
random.integers(2**30)
strategy, we use here and in a couple other places:pymc/pymc/model.py
Line 1047 in bae5087
Similar to aesara-devs/aesara#936
The text was updated successfully, but these errors were encountered: