Replies: 2 comments
-
Take a look here : stable-diffusion-webui/modules/processing.py Line 686 in feee37d |
Beta Was this translation helpful? Give feedback.
-
now as psykokwak-com mentioned, the when seed this limitation can be overcome by using a text element as opposed to a number element and we do have an option to do this --use-textbox-seed that being said it's just RNG SEED 16bit seeds is more than enough, they are just seeds |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Seeds are processed by PyTorch's manual_seed function which accepts seeds in the range between -9223372036854775808 and +18446744073709551615:
Source: https://pytorch.org/docs/stable/generated/torch.manual_seed.html
Why is the actual maximum seed value in Automatic1111 lower than that? Higher values than 18446744073709519872 return an error:
RuntimeError: Overflow when unpacking long
. And where in the code does this limitation happen?Beta Was this translation helpful? Give feedback.
All reactions