Update app.py
Browse files
app.py
CHANGED
|
@@ -184,20 +184,17 @@ with App.Blocks(css='style.css') as demo:
|
|
| 184 |
show_label=False,
|
| 185 |
max_lines=4,
|
| 186 |
placeholder='Full Prompt',
|
| 187 |
-
).style
|
| 188 |
-
|
| 189 |
-
)
|
| 190 |
-
Run = App.Button('Generate Images').style(full_width=False)
|
| 191 |
-
|
| 192 |
-
with App.Row(variant='compact'):
|
| 193 |
-
neg_prompt = App.Textbox(
|
| 194 |
label='Enter your Negative prompt',
|
| 195 |
show_label=False,
|
| 196 |
max_lines=4,
|
| 197 |
placeholder='Full Negative Prompt',
|
| 198 |
-
).style
|
| 199 |
-
|
|
|
|
| 200 |
Run = App.Button('Generate Images').style(full_width=False)
|
|
|
|
| 201 |
|
| 202 |
with App.Row():
|
| 203 |
with App.Row():
|
|
@@ -209,7 +206,7 @@ with App.Blocks(css='style.css') as demo:
|
|
| 209 |
Output2=App.Image(label='Dreamlike Diffusion 1.0',show_label=False)
|
| 210 |
Output3=App.Image(label='Dreamlike Diffusion 1.0',show_label=False)
|
| 211 |
Output4=App.Image(label='Dreamlike Diffusion 1.0',show_label=False)
|
| 212 |
-
Output5=App.Image(label='Dreamlike PhotoReal 2.0',show_label=
|
| 213 |
Output6=App.Image(label='Dreamlike PhotoReal 2.0',show_label=False)
|
| 214 |
Output7=App.Image(label='Dreamlike PhotoReal 2.0',show_label=False)
|
| 215 |
Output8=App.Image(label='Dreamlike PhotoReal 2.0',show_label=False)
|
|
|
|
| 184 |
show_label=False,
|
| 185 |
max_lines=4,
|
| 186 |
placeholder='Full Prompt',
|
| 187 |
+
).style
|
| 188 |
+
neg_prompt = App.Textbox(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 189 |
label='Enter your Negative prompt',
|
| 190 |
show_label=False,
|
| 191 |
max_lines=4,
|
| 192 |
placeholder='Full Negative Prompt',
|
| 193 |
+
).style(
|
| 194 |
+
container=False,
|
| 195 |
+
)
|
| 196 |
Run = App.Button('Generate Images').style(full_width=False)
|
| 197 |
+
|
| 198 |
|
| 199 |
with App.Row():
|
| 200 |
with App.Row():
|
|
|
|
| 206 |
Output2=App.Image(label='Dreamlike Diffusion 1.0',show_label=False)
|
| 207 |
Output3=App.Image(label='Dreamlike Diffusion 1.0',show_label=False)
|
| 208 |
Output4=App.Image(label='Dreamlike Diffusion 1.0',show_label=False)
|
| 209 |
+
Output5=App.Image(label='Dreamlike PhotoReal 2.0',show_label=True)
|
| 210 |
Output6=App.Image(label='Dreamlike PhotoReal 2.0',show_label=False)
|
| 211 |
Output7=App.Image(label='Dreamlike PhotoReal 2.0',show_label=False)
|
| 212 |
Output8=App.Image(label='Dreamlike PhotoReal 2.0',show_label=False)
|