ehristoforu commited on
Commit
c413833
1 Parent(s): cf6ad40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -9
app.py CHANGED
@@ -127,15 +127,14 @@ with gr.Blocks(title="Fluently V1", css=css) as demo:
127
  run_button = gr.Button("Run", scale=0)
128
  result = gr.Gallery(label="Result", columns=1, preview=True, show_label=False)
129
  with gr.Accordion("Advanced options", open=False):
130
- with gr.Row():
131
- use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=False)
132
- negative_prompt = gr.Text(
133
- label="Negative prompt",
134
- max_lines=1,
135
- value="""(deformed, distorted, disfigured:1.3), poorly drawn, bad anatomy, wrong anatomy, extra limb, missing limb, floating limbs, (mutated hands and fingers:1.4), disconnected limbs, mutation, mutated, ugly, disgusting, blurry, amputation""",
136
- placeholder="Enter a negative prompt",
137
- visible=False,
138
- )
139
  seed = gr.Slider(
140
  label="Seed",
141
  minimum=0,
 
127
  run_button = gr.Button("Run", scale=0)
128
  result = gr.Gallery(label="Result", columns=1, preview=True, show_label=False)
129
  with gr.Accordion("Advanced options", open=False):
130
+ use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=False)
131
+ negative_prompt = gr.Text(
132
+ label="Negative prompt",
133
+ max_lines=3,
134
+ value="""(deformed, distorted, disfigured:1.3), poorly drawn, bad anatomy, wrong anatomy, extra limb, missing limb, floating limbs, (mutated hands and fingers:1.4), disconnected limbs, mutation, mutated, ugly, disgusting, blurry, amputation""",
135
+ placeholder="Enter a negative prompt",
136
+ visible=False,
137
+ )
 
138
  seed = gr.Slider(
139
  label="Seed",
140
  minimum=0,