confit.utils.random
set_seed(seed)
Set seed values for random generators. If used as a context, restore the random state used before entering the context.
PARAMETER | DESCRIPTION |
---|---|
seed |
Value used as a seed.
|
cuda |
Saves the cuda random states too
|
Source code in confit/utils/random.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|