Commit
·
5305898
1
Parent(s):
250e7bc
Update app.py
Browse files
app.py
CHANGED
@@ -41,15 +41,15 @@ css = """
|
|
41 |
.dark .btn-red:hover {background: linear-gradient(to bottom right, #be123c, #be123c) !important;}
|
42 |
"""
|
43 |
|
44 |
-
def generate(prompt,
|
45 |
-
images = pipe(
|
46 |
return [(img, f"Image {i+1}") for i, img in enumerate(images)]
|
47 |
|
48 |
|
49 |
with gr.Blocks(css=css) as demo:
|
50 |
with gr.Column():
|
51 |
prompt = gr.Textbox(label="Prompt")
|
52 |
-
negative_prompt = gr.Textbox(label="Negative Prompt")
|
53 |
submit_btn = gr.Button("Generate", variant="primary", min_width="96px")
|
54 |
gallery = gr.Gallery(label="Generated images")
|
55 |
|
|
|
41 |
.dark .btn-red:hover {background: linear-gradient(to bottom right, #be123c, #be123c) !important;}
|
42 |
"""
|
43 |
|
44 |
+
def generate(prompt, neg_prompt):
|
45 |
+
images = pipe(prompt,negative_prompt=neg_prompt,num_inference_steps=25,guidance_scale=7.5).images
|
46 |
return [(img, f"Image {i+1}") for i, img in enumerate(images)]
|
47 |
|
48 |
|
49 |
with gr.Blocks(css=css) as demo:
|
50 |
with gr.Column():
|
51 |
prompt = gr.Textbox(label="Prompt")
|
52 |
+
negative_prompt = gr.Textbox(label="Negative Prompt", value="lowres, bad anatomy, bad hands, cropped, worst quality, disfigured, deformed, extra limbs, asian, filter, render")
|
53 |
submit_btn = gr.Button("Generate", variant="primary", min_width="96px")
|
54 |
gallery = gr.Gallery(label="Generated images")
|
55 |
|