ford442 commited on
Commit
f97da0a
·
verified ·
1 Parent(s): f6921b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -202,13 +202,15 @@ def infer(
202
  print("-- using image file --")
203
  print('-- generating image --')
204
  #with torch.no_grad():
205
- result = pipe(
206
- clip_image=image,
207
- prompt=prompt,
208
- ipadapter_scale=scale,
 
209
  width=width,
210
  height=height,
211
- generator=torch.Generator().manual_seed(seed)
 
212
  ).images[0]
213
  rv_path = f"sd35_{seed}.png"
214
  sd_image[0].save(rv_path,optimize=False,compress_level=0)
 
202
  print("-- using image file --")
203
  print('-- generating image --')
204
  #with torch.no_grad():
205
+ sd_image = pipe(
206
+ prompt=enhanced_prompt, # This conversion is fine
207
+ negative_prompt=negative_prompt,
208
+ guidance_scale=guidance_scale,
209
+ num_inference_steps=num_inference_steps,
210
  width=width,
211
  height=height,
212
+ latents=sd_image_a,
213
+ generator=generator
214
  ).images[0]
215
  rv_path = f"sd35_{seed}.png"
216
  sd_image[0].save(rv_path,optimize=False,compress_level=0)