edspdf.utils.random
set_seed
Source code in edspdf/utils/random.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | |
__init__(seed, cuda=torch.cuda.is_available())
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
DEFAULT:
|
Source code in edspdf/utils/random.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |
get_random_generator_state(cuda=torch.cuda.is_available())
Get the torch, numpy and random random generator state.
| PARAMETER | DESCRIPTION |
|---|---|
cuda |
Saves the cuda random states too
DEFAULT:
|
| RETURNS | DESCRIPTION |
|---|---|
RandomGeneratorState
|
Source code in edspdf/utils/random.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | |
set_random_generator_state(state)
Set the torch, numpy and random random generator state.
| PARAMETER | DESCRIPTION |
|---|---|
state |
|
Source code in edspdf/utils/random.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |