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
I want to generate 10 images per prompt But seems out of memory and only use 1 GPU on my server.
image = pipe( prompt=prompt_list[0], guidance_scale=5.0, pag_scale=2.0, num_inference_steps=20, num_images_per_prompt=10, generator=torch.Generator(device="cuda").manual_seed(42), )[0]
The text was updated successfully, but these errors were encountered:
you have to loop
that is what i added into my app
like for loop
num_images_per_prompt is actually batch size but i don't know why academic authors keep naming it as num_images_per_prompt
Sorry, something went wrong.
you have to loop that is what i added into my app like for loop num_images_per_prompt is actually batch size but i don't know why academic authors keep naming it as num_images_per_prompt
Okay!Thank you so much!
No branches or pull requests
I want to generate 10 images per prompt But seems out of memory and only use 1 GPU on my server.
image = pipe(
prompt=prompt_list[0],
guidance_scale=5.0,
pag_scale=2.0,
num_inference_steps=20,
num_images_per_prompt=10,
generator=torch.Generator(device="cuda").manual_seed(42),
)[0]
The text was updated successfully, but these errors were encountered: