-
I have a general question regarding random number generation in
Are the random number streams independent or are they overlapping with such a set up? Probably |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
If you start with a JAX RNG key |
Beta Was this translation helpful? Give feedback.
Any key derivation (i.e. split) is intended to produce uncorrelated streams from its subkeys. That includes splits from splits.
For your use case,
fold_in
might make more sense. Specifically, you could considering folding in the current iteration count.