InvokeAI: [bug]: Max seed value is too low
Is there an existing issue for this?
- I have searched the existing issues
OS
Windows
GPU
cuda
VRAM
8GB
What happened?
There are plenty of prompts all over the internet with seeds much higher than what InvokeAI allows.
E.g., I tried this one:
112358132141
It was truncated to:
4294967295
Up-arrow icon next to the field is greyed out indicating limit is reached. It seems, the issue appears with any sampler.
Screenshots
Additional context
No response
Contact Details
No response
About this issue
- Original URL
- State: closed
- Created a year ago
- Reactions: 3
- Comments: 15 (2 by maintainers)
The main difference in the results is because of how each implementation handles the attention system. As long as that is not standardized, they will all end up having different results. Maybe some day we’ll have a library that is so state of the art that everyone uses that and we get some sort of standardization but I don’t think that’s happening any time soon. The seed value is the smallest concern in that regard.
The goal isn’t to allow a user input anything, but to be able to re-generate other people’s examples. So I guess, for now you should at least raise it to
9007199254740992
as a simple fix.But in the future - yeah, I strongly believe generated images shouldn’t be different depending on which UI you used to make them. So, yeah, the true solution is unfortunately “follow A11 since he sets the trend”.
In AUTOMATIC1111, I’ve tried to detect it from trial end error, with bicection. Here are my findings:
18446744073709519872
, i.e.2^64
18446744073709517824
(2^64-2048
) give almost the same result. As well as 2048 seeds before them (with another image, of course), As well as 2048 before them…So, with these findings:
18446744073709519872
.