Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -123,7 +123,9 @@ MAX_IMAGE_SIZE = 4096
|
|
123 |
@spaces.GPU(duration=90)
|
124 |
def infer(
|
125 |
prompt,
|
126 |
-
|
|
|
|
|
127 |
seed,
|
128 |
randomize_seed,
|
129 |
width,
|
@@ -191,6 +193,7 @@ def infer(
|
|
191 |
else:
|
192 |
enhanced_prompt = prompt
|
193 |
enhanced_prompt_2 = prompt
|
|
|
194 |
if latent_file: # Check if a latent file is provided
|
195 |
# initial_latents = pipe.prepare_latents(
|
196 |
# batch_size=1,
|
@@ -207,7 +210,7 @@ def infer(
|
|
207 |
#with torch.no_grad():
|
208 |
sd_image = pipe(
|
209 |
prompt=enhanced_prompt, # This conversion is fine
|
210 |
-
negative_prompt=
|
211 |
guidance_scale=guidance_scale,
|
212 |
num_inference_steps=num_inference_steps,
|
213 |
width=width,
|
@@ -225,7 +228,9 @@ def infer(
|
|
225 |
prompt=prompt, # This conversion is fine
|
226 |
prompt_2=enhanced_prompt_2,
|
227 |
prompt_3=enhanced_prompt,
|
228 |
-
negative_prompt=
|
|
|
|
|
229 |
guidance_scale=guidance_scale,
|
230 |
num_inference_steps=num_inference_steps,
|
231 |
width=width,
|
@@ -235,7 +240,6 @@ def infer(
|
|
235 |
generator=generator,
|
236 |
max_sequence_length=512
|
237 |
).images[0]
|
238 |
-
|
239 |
print('-- got image --')
|
240 |
#sd35_image = pipe.vae.decode(sd_image / 0.18215).sample
|
241 |
# sd35_image = sd35_image.cpu().permute(0, 2, 3, 1).float().detach().numpy()
|
@@ -244,7 +248,6 @@ def infer(
|
|
244 |
# sd35_path = f"sd35_{seed}.png"
|
245 |
# image_pil.save(sd35_path,optimize=False,compress_level=0)
|
246 |
# upload_to_ftp(sd35_path)
|
247 |
-
|
248 |
sd35_path = f"sd35_{seed}.png"
|
249 |
sd_image.save(sd35_path,optimize=False,compress_level=0)
|
250 |
upload_to_ftp(sd35_path)
|
@@ -355,11 +358,26 @@ with gr.Blocks(theme=gr.themes.Origin(),css=css) as demo:
|
|
355 |
result = gr.Image(label="Result", show_label=False)
|
356 |
with gr.Accordion("Advanced Settings", open=True):
|
357 |
latent_file = gr.File(label="Image File (optional)") # Add latents file input
|
358 |
-
|
359 |
-
label="Negative prompt",
|
360 |
max_lines=1,
|
361 |
placeholder="Enter a negative prompt",
|
362 |
visible=True,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
363 |
)
|
364 |
num_iterations = gr.Number(
|
365 |
value=1000,
|
@@ -407,7 +425,9 @@ with gr.Blocks(theme=gr.themes.Origin(),css=css) as demo:
|
|
407 |
fn=infer,
|
408 |
inputs=[
|
409 |
prompt,
|
410 |
-
|
|
|
|
|
411 |
seed,
|
412 |
randomize_seed,
|
413 |
width,
|
|
|
123 |
@spaces.GPU(duration=90)
|
124 |
def infer(
|
125 |
prompt,
|
126 |
+
negative_prompt_1,
|
127 |
+
negative_prompt_2,
|
128 |
+
negative_prompt_3,
|
129 |
seed,
|
130 |
randomize_seed,
|
131 |
width,
|
|
|
193 |
else:
|
194 |
enhanced_prompt = prompt
|
195 |
enhanced_prompt_2 = prompt
|
196 |
+
model.to('cpu')
|
197 |
if latent_file: # Check if a latent file is provided
|
198 |
# initial_latents = pipe.prepare_latents(
|
199 |
# batch_size=1,
|
|
|
210 |
#with torch.no_grad():
|
211 |
sd_image = pipe(
|
212 |
prompt=enhanced_prompt, # This conversion is fine
|
213 |
+
negative_prompt=negative_prompt_1,
|
214 |
guidance_scale=guidance_scale,
|
215 |
num_inference_steps=num_inference_steps,
|
216 |
width=width,
|
|
|
228 |
prompt=prompt, # This conversion is fine
|
229 |
prompt_2=enhanced_prompt_2,
|
230 |
prompt_3=enhanced_prompt,
|
231 |
+
negative_prompt=negative_prompt_1,
|
232 |
+
negative_prompt_2=negative_prompt_2,
|
233 |
+
negative_prompt_3=negative_prompt_3,
|
234 |
guidance_scale=guidance_scale,
|
235 |
num_inference_steps=num_inference_steps,
|
236 |
width=width,
|
|
|
240 |
generator=generator,
|
241 |
max_sequence_length=512
|
242 |
).images[0]
|
|
|
243 |
print('-- got image --')
|
244 |
#sd35_image = pipe.vae.decode(sd_image / 0.18215).sample
|
245 |
# sd35_image = sd35_image.cpu().permute(0, 2, 3, 1).float().detach().numpy()
|
|
|
248 |
# sd35_path = f"sd35_{seed}.png"
|
249 |
# image_pil.save(sd35_path,optimize=False,compress_level=0)
|
250 |
# upload_to_ftp(sd35_path)
|
|
|
251 |
sd35_path = f"sd35_{seed}.png"
|
252 |
sd_image.save(sd35_path,optimize=False,compress_level=0)
|
253 |
upload_to_ftp(sd35_path)
|
|
|
358 |
result = gr.Image(label="Result", show_label=False)
|
359 |
with gr.Accordion("Advanced Settings", open=True):
|
360 |
latent_file = gr.File(label="Image File (optional)") # Add latents file input
|
361 |
+
negative_prompt_1 = gr.Text(
|
362 |
+
label="Negative prompt 1",
|
363 |
max_lines=1,
|
364 |
placeholder="Enter a negative prompt",
|
365 |
visible=True,
|
366 |
+
value="bad anatomy, poorly drawn hands, distorted face, blurry, out of frame, low resolution, grainy, pixelated, disfigured, mutated, extra limbs, bad composition"
|
367 |
+
)
|
368 |
+
negative_prompt_2 = gr.Text(
|
369 |
+
label="Negative prompt 2",
|
370 |
+
max_lines=1,
|
371 |
+
placeholder="Enter a second negative prompt",
|
372 |
+
visible=True,
|
373 |
+
value="unrealistic, cartoon, anime, sketch, painting, drawing, illustration, graphic, digital art, render, 3d, blurry, deformed, disfigured, poorly drawn, bad anatomy, mutated, extra limbs, ugly, out of frame, bad composition, low resolution, grainy, pixelated, noisy, oversaturated, undersaturated, (worst quality, low quality:1.3), (bad hands, missing fingers:1.2)"
|
374 |
+
)
|
375 |
+
negative_prompt_3 = gr.Text(
|
376 |
+
label="Negative prompt 3",
|
377 |
+
max_lines=1,
|
378 |
+
placeholder="Enter a third negative prompt",
|
379 |
+
visible=True,
|
380 |
+
value="(worst quality, low quality:1.3), (bad anatomy, bad hands, missing fingers, extra digit, fewer digits:1.2), (blurry:1.1), cropped, watermark, text, signature, logo, jpeg artifacts, (ugly, deformed, disfigured:1.2), (poorly drawn:1.2), mutated, extra limbs, (bad proportions, gross proportions:1.2), (malformed limbs, missing arms, missing legs, extra arms, extra legs:1.2), (fused fingers, too many fingers, long neck:1.2), (unnatural body, unnatural pose:1.1), out of frame, (bad composition, poorly composed:1.1), (oversaturated, undersaturated:1.1), (grainy, pixelated:1.1), (low resolution, noisy:1.1), (unrealistic, distorted:1.1), (extra fingers, mutated hands, poorly drawn hands, bad hands:1.3), (missing fingers:1.3)"
|
381 |
)
|
382 |
num_iterations = gr.Number(
|
383 |
value=1000,
|
|
|
425 |
fn=infer,
|
426 |
inputs=[
|
427 |
prompt,
|
428 |
+
negative_prompt_1,
|
429 |
+
negative_prompt_2,
|
430 |
+
negative_prompt_3,
|
431 |
seed,
|
432 |
randomize_seed,
|
433 |
width,
|