Spaces:
Running
Running
prithivMLmods
commited on
Commit
•
bfe42fe
1
Parent(s):
64572b6
Update app.py
Browse files
app.py
CHANGED
@@ -183,11 +183,12 @@ with gr.Blocks(css=css, theme="xiaobaiyuan/theme_brief") as demo:
|
|
183 |
run_button = gr.Button("Run")
|
184 |
result = gr.Gallery(label="Result", columns=1, preview=True)
|
185 |
with gr.Accordion("Advanced options", open=False):
|
186 |
-
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=
|
187 |
negative_prompt = gr.Text(
|
188 |
label="Negative prompt",
|
189 |
max_lines=1,
|
190 |
placeholder="Enter a negative prompt",
|
|
|
191 |
visible=True,
|
192 |
)
|
193 |
with gr.Row():
|
|
|
183 |
run_button = gr.Button("Run")
|
184 |
result = gr.Gallery(label="Result", columns=1, preview=True)
|
185 |
with gr.Accordion("Advanced options", open=False):
|
186 |
+
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True, visible=True)
|
187 |
negative_prompt = gr.Text(
|
188 |
label="Negative prompt",
|
189 |
max_lines=1,
|
190 |
placeholder="Enter a negative prompt",
|
191 |
+
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, NSFW",
|
192 |
visible=True,
|
193 |
)
|
194 |
with gr.Row():
|