WASasquatch / easydiffusion

Easy Diffusion is an advanced Stable Diffusion Notebook with a feature rich image processing suite.
MIT License
103 stars 17 forks source link

TypeError: img2img() missing 1 required positional argument: 'image' #11

Open malroth opened 1 year ago

malroth commented 1 year ago

in 1462 raise SystemExit('\33[33mExecution interrupted by user.\33[0m') 1463 except Exception as e: -> 1464 raise e 1465 finally: 1466 clean_env()

2 frames

in diffuse_run() 558 image = pipeout.images[0] 559 else: --> 560 pipeout = pipe.img2img(prompt=PROMPT, negative_prompt=NEG_PROMPT, num_inference_steps=STEPS, init_image=init, strength=INIT_SCALE, guidance_scale=SCALE, generator=gen_seed) 561 image = pipeout.images[0] 562 else:

TypeError: img2img() missing 1 required positional argument: 'image'

malroth commented 1 year ago

Recursive Hybrid evo fails when loading during it's first iteration.

WASasquatch commented 1 year ago

Yeah, likely due to diffusers changing "init_image" to just "image". I'll patch here soon.

On Wed, Dec 21, 2022, 3:50 AM malroth @.***> wrote:

Recursive Hybrid evo fails when loading during it's first iteration.

— Reply to this email directly, view it on GitHub https://github.com/WASasquatch/easydiffusion/issues/11#issuecomment-1361217677, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAIZEZOASOOLLGFDWQ4MJYDWOLVHZANCNFSM6AAAAAASVAOSWE . You are receiving this because you are subscribed to this thread.Message ID: @.***>

WASasquatch commented 1 year ago

Development branch is patched for this.