easydiffusion icon indicating copy to clipboard operation
easydiffusion copied to clipboard

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

Open malroth opened this issue 2 years ago • 3 comments

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 avatar Dec 06 '22 03:12 malroth

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

malroth avatar Dec 21 '22 11:12 malroth

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 avatar Dec 22 '22 00:12 WASasquatch

Development branch is patched for this.

WASasquatch avatar Dec 25 '22 00:12 WASasquatch