Update app.py
Browse files
app.py
CHANGED
@@ -15,8 +15,8 @@ with gr.Blocks() as demo:
|
|
15 |
with gr.Tab("/sdxl/generate [BETA]"):
|
16 |
with gr.Row():
|
17 |
with gr.Column(scale=6, min_width=600):
|
18 |
-
prompt = gr.Textbox("
|
19 |
-
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3)
|
20 |
with gr.Row():
|
21 |
with gr.Column():
|
22 |
sampler = gr.Dropdown(value="Euler a", show_label=True, label="Sampling Method",
|
@@ -43,17 +43,17 @@ with gr.Blocks() as demo:
|
|
43 |
with gr.Tab("/sd/generate"):
|
44 |
with gr.Row():
|
45 |
with gr.Column(scale=6, min_width=600):
|
46 |
-
prompt = gr.Textbox("
|
47 |
-
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3)
|
48 |
with gr.Row():
|
49 |
with gr.Column():
|
50 |
-
sampler = gr.Dropdown(value="
|
51 |
choices=SAMPLER_LIST)
|
52 |
model = gr.Dropdown(
|
53 |
interactive=True,
|
54 |
value=get_models()[1],
|
55 |
show_label=True,
|
56 |
-
label="
|
57 |
choices=get_models()
|
58 |
)
|
59 |
upscale = gr.Checkbox(label="Upscale", value=True)
|
|
|
15 |
with gr.Tab("/sdxl/generate [BETA]"):
|
16 |
with gr.Row():
|
17 |
with gr.Column(scale=6, min_width=600):
|
18 |
+
prompt = gr.Textbox("space warrior, beautiful, female, ultrarealistic, soft lighting, 8k", placeholder="Prompt", show_label=False, lines=3)
|
19 |
+
negative_prompt = gr.Textbox("3d, cartoon, anime, (deformed eyes, nose, ears, nose), bad anatomy, ugly", placeholder="Negative Prompt", show_label=False, lines=3)
|
20 |
with gr.Row():
|
21 |
with gr.Column():
|
22 |
sampler = gr.Dropdown(value="Euler a", show_label=True, label="Sampling Method",
|
|
|
43 |
with gr.Tab("/sd/generate"):
|
44 |
with gr.Row():
|
45 |
with gr.Column(scale=6, min_width=600):
|
46 |
+
prompt = gr.Textbox("space warrior, beautiful, female, ultrarealistic, soft lighting, 8k", placeholder="Prompt", show_label=False, lines=3)
|
47 |
+
negative_prompt = gr.Textbox("3d, cartoon, anime, (deformed eyes, nose, ears, nose), bad anatomy, ugly", placeholder="Negative Prompt", show_label=False, lines=3)
|
48 |
with gr.Row():
|
49 |
with gr.Column():
|
50 |
+
sampler = gr.Dropdown(value="DPM++ 2M Karras", show_label=True, label="Sampling Method",
|
51 |
choices=SAMPLER_LIST)
|
52 |
model = gr.Dropdown(
|
53 |
interactive=True,
|
54 |
value=get_models()[1],
|
55 |
show_label=True,
|
56 |
+
label="absolutereality_v181.safetensors [3d9d4d2b]",
|
57 |
choices=get_models()
|
58 |
)
|
59 |
upscale = gr.Checkbox(label="Upscale", value=True)
|