We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you run with a fixed seed, you get an error about the seed not being an integer.
Changing line 64 of dynamic_prompting.py to this:
all_seeds = [int(p.seed)] * num_seeds
fixes the issue.
The text was updated successfully, but these errors were encountered:
Fixed get_seeds
2adbb45
Moved into helpers.py Ensured that seeds are integers Fixef subseed implementation Fixes #271
7cfbe0e
Merge pull request #276 from adieyal/bug/fixed-seed-causes-error
c72c265
Fixes #271
No branches or pull requests
When you run with a fixed seed, you get an error about the seed not being an integer.
Changing line 64 of dynamic_prompting.py to this:
all_seeds = [int(p.seed)] * num_seeds
fixes the issue.
The text was updated successfully, but these errors were encountered: