Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -120,7 +120,7 @@ examples = [
|
|
120 |
|
121 |
css = """
|
122 |
#app-container {
|
123 |
-
max-width:
|
124 |
margin-left: auto;
|
125 |
margin-right: auto;
|
126 |
|
@@ -160,7 +160,7 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
|
|
160 |
custom_lora = gr.Dropdown([" ", "jwu114/lora-sdxl-realistic", "issaccyj/lora-sdxl-cyberpunk", "hugovntr/flux-schnell-realism", "fofr/sdxl-deep-down", "KappaNeuro/surreal-harmony", "ntc-ai/SDXL-LoRA-slider.extremely-detailed", "prithivMLmods/Canopus-LoRA-Flux-FaceRealism", "KappaNeuro/dark-fantasy", "artificialguybr/analogredmond", "KappaNeuro/jules-bastien-lepage-style", "KappaNeuro/john-singer-sargent-style", "KappaNeuro/alphonse-mucha-style", "ntc-ai/SDXL-LoRA-slider.ultra-realistic-illustration", "ntc-ai/SDXL-LoRA-slider.eye-catching", "KappaNeuro/john-constable-style", "dvyio/flux-lora-film-noir", "dvyio/flux-lora-pro-headshot"], label="Custom LoRA", info="Please select from the list")
|
161 |
with gr.Row():
|
162 |
with gr.Accordion("⚙️ Advanced Settings", open=False, elem_id="settings-container"):
|
163 |
-
negative_prompt = gr.Textbox(label="Negative Prompt", placeholder="What should not be in the image", value="
|
164 |
with gr.Row():
|
165 |
width = gr.Slider(label="Width", value=1024, minimum=64, maximum=1216, step=32)
|
166 |
height = gr.Slider(label="Height", value=1024, minimum=64, maximum=1216, step=32)
|
|
|
120 |
|
121 |
css = """
|
122 |
#app-container {
|
123 |
+
max-width: 900px;
|
124 |
margin-left: auto;
|
125 |
margin-right: auto;
|
126 |
|
|
|
160 |
custom_lora = gr.Dropdown([" ", "jwu114/lora-sdxl-realistic", "issaccyj/lora-sdxl-cyberpunk", "hugovntr/flux-schnell-realism", "fofr/sdxl-deep-down", "KappaNeuro/surreal-harmony", "ntc-ai/SDXL-LoRA-slider.extremely-detailed", "prithivMLmods/Canopus-LoRA-Flux-FaceRealism", "KappaNeuro/dark-fantasy", "artificialguybr/analogredmond", "KappaNeuro/jules-bastien-lepage-style", "KappaNeuro/john-singer-sargent-style", "KappaNeuro/alphonse-mucha-style", "ntc-ai/SDXL-LoRA-slider.ultra-realistic-illustration", "ntc-ai/SDXL-LoRA-slider.eye-catching", "KappaNeuro/john-constable-style", "dvyio/flux-lora-film-noir", "dvyio/flux-lora-pro-headshot"], label="Custom LoRA", info="Please select from the list")
|
161 |
with gr.Row():
|
162 |
with gr.Accordion("⚙️ Advanced Settings", open=False, elem_id="settings-container"):
|
163 |
+
negative_prompt = gr.Textbox(label="Negative Prompt", placeholder="What should not be in the image", value=" bad anatomy, bad hands, three hands, three legs, bad arms, missing legs, missing arms, poorly drawn face, bad face, fused face, cloned face, worst face, three crus, extra crus, fused crus, worst feet, three feet, fused feet, fused thigh, three thigh, fused thigh, extra thigh, worst thigh, missing fingers, extra fingers, ugly fingers, long fingers, horn, extra eyes, huge eyes, 2girl, amputation, disconnected limbs, cartoon, cg, 3d, unreal, animate", lines=3, elem_id="negative-prompt-text-input")
|
164 |
with gr.Row():
|
165 |
width = gr.Slider(label="Width", value=1024, minimum=64, maximum=1216, step=32)
|
166 |
height = gr.Slider(label="Height", value=1024, minimum=64, maximum=1216, step=32)
|