Krebzonide commited on
Commit
5305898
·
1 Parent(s): 250e7bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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, negative_prompt):
45
- images = pipe(prompts=prompt,neg_prompts=negative_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")
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