jepz commited on
Commit
f5d99fc
·
verified ·
1 Parent(s): 6cc1e16

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ def infer(init_img, prompt, negative_prompt, seed, randomize_seed, width, height
45
  generator = torch.Generator().manual_seed(seed)
46
 
47
  image = pipe(
48
- image = uploaded_img,
49
  prompt = prompt,
50
  negative_prompt = negative_prompt,
51
  guidance_scale = guidance_scale,
 
45
  generator = torch.Generator().manual_seed(seed)
46
 
47
  image = pipe(
48
+ image = init_img,
49
  prompt = prompt,
50
  negative_prompt = negative_prompt,
51
  guidance_scale = guidance_scale,