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 am using flux_text_to_image_low_vram.py
As I see the generated image using pipe is passed for upscaling.
image = pipe( prompt=prompt, negative_prompt=negative_prompt, num_inference_steps=50, cfg_scale=2.0, embedded_guidance=3.5 ) image.save("image_1024_cfg.jpg") # Highres-fix torch.manual_seed(10) image = pipe( prompt=prompt, num_inference_steps=50, embedded_guidance=3.5, input_image=image.resize((2048, 2048)), height=2048, width=2048, denoising_strength=0.6, tiled=True ) image.save("image_2048_highres.jpg")
I just want to upscale some Flux images generated earlier. How can I do that. (only use # Highres-fix code without generating image)
input_image=image.resize
The text was updated successfully, but these errors were encountered:
Fixed. Please try again.
Sorry, something went wrong.
@Artiprocher
Sorry I do not see any updates in repo.
No branches or pull requests
I am using flux_text_to_image_low_vram.py
As I see the generated image using pipe is passed for upscaling.
I just want to upscale some Flux images generated earlier. How can I do that. (only use # Highres-fix code without generating image)
input_image=image.resize
The text was updated successfully, but these errors were encountered: