JoPmt commited on
Commit
bb0cb00
1 Parent(s): 9abd371

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -77,7 +77,7 @@ def plex(prompt,neg_prompt,stips,nut,wit,het,gaul,progress=gr.Progress(track_tqd
77
  image = pipe(prompt=[prompt]*2, negative_prompt=[neg_prompt]*2, generator=generator, num_inference_steps=stips,height=het,width=wit)
78
  for a, imze in enumerate(image["images"]):
79
  apol.append(imze)
80
- imze.save('./tmpo/'+fnamo+'_'+str(i)+'.png', 'PNG')
81
  chdr(apol,prompt,modil,stips,fnamo,gaul)
82
  return apol
83
 
 
77
  image = pipe(prompt=[prompt]*2, negative_prompt=[neg_prompt]*2, generator=generator, num_inference_steps=stips,height=het,width=wit)
78
  for a, imze in enumerate(image["images"]):
79
  apol.append(imze)
80
+ imze.save('./tmpo/'+fnamo+'_'+str(a)+'.png', 'PNG')
81
  chdr(apol,prompt,modil,stips,fnamo,gaul)
82
  return apol
83