Spaces:
Running
on
Zero
Running
on
Zero
PommesPeter
commited on
Commit
•
e91c889
1
Parent(s):
dc7dc57
Update app.py
Browse files
app.py
CHANGED
@@ -343,10 +343,11 @@ def main():
|
|
343 |
|
344 |
### Lumina-Next supports higher-order solvers ["euler", "midpoint"].
|
345 |
### <span style='color: orange;'>It can generate images with merely 10 steps without any distillation for 1K resolution generation.
|
|
|
346 |
|
347 |
### To reduce waiting times, we are offering three parallel demos:
|
348 |
|
349 |
-
Lumina-T2I 2B model: [[demo (supported 2k inference)](http://106.14.2.150:10020/)] [[demo](http://106.14.2.150:10021/)] [[demo](http://106.14.2.150:10022/)] [[demo (compositional generation)](http://106.14.2.150:10023/)]
|
350 |
|
351 |
"""
|
352 |
with gr.Blocks() as demo:
|
@@ -374,6 +375,10 @@ def main():
|
|
374 |
"1024x1024",
|
375 |
"512x2048",
|
376 |
"2048x512",
|
|
|
|
|
|
|
|
|
377 |
]
|
378 |
resolution = gr.Dropdown(value=res_choices[0], choices=res_choices, label="Resolution")
|
379 |
with gr.Row():
|
|
|
343 |
|
344 |
### Lumina-Next supports higher-order solvers ["euler", "midpoint"].
|
345 |
### <span style='color: orange;'>It can generate images with merely 10 steps without any distillation for 1K resolution generation.
|
346 |
+
### <span style='color: orange;'>Tip: For improved human portrait generation, please choose resolution at 1024x2048.
|
347 |
|
348 |
### To reduce waiting times, we are offering three parallel demos:
|
349 |
|
350 |
+
Lumina-T2I 2B model: [[demo (supported 2k inference)](http://106.14.2.150:10020/)] [[demo (supported 2k inference)](http://106.14.2.150:10021/)] [[demo (supported 2k inference)](http://106.14.2.150:10022/)] [[demo (compositional generation)](http://106.14.2.150:10023/)]
|
351 |
|
352 |
"""
|
353 |
with gr.Blocks() as demo:
|
|
|
375 |
"1024x1024",
|
376 |
"512x2048",
|
377 |
"2048x512",
|
378 |
+
"(Extrapolation) 1536x1536",
|
379 |
+
"(Extrapolation) 2048x1024",
|
380 |
+
"(Extrapolation) 1024x2048",
|
381 |
+
|
382 |
]
|
383 |
resolution = gr.Dropdown(value=res_choices[0], choices=res_choices, label="Resolution")
|
384 |
with gr.Row():
|