Replies: 2 comments 2 replies
-
Hi @wyli , Could you please help share some comments about this question? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks, for item 1, the docstring is probably from pytorch https://pytorch.org/docs/stable/generated/torch.Generator.html#torch.Generator.manual_seed
I think item 2 is a valid issue and I don't know the reason of the current default... following the good practice doc, we might want to 'warm up' the RNGs. cc @ericspod @rijobro |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The docs for
monai.utils.misc.set_determinism
say:Two things confuse me here:
0
is the most common random seed (source) and some important libraries use it happily in their examples.np.iinfo(np.uint32).max
, which is4294967295
or11111111111111111111111111111111
. Another large number is2147483648
or10000000000000000000000000000000
. The default kwarg is not consistent with the docstring.Beta Was this translation helpful? Give feedback.
All reactions