Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
|
@@ -163,7 +163,7 @@ css = """
|
|
| 163 |
.image_duplication{position: absolute; width: 100px; left: 50px}
|
| 164 |
"""
|
| 165 |
|
| 166 |
-
block = gr.Blocks(css=css)
|
| 167 |
|
| 168 |
examples = [
|
| 169 |
[
|
|
@@ -343,4 +343,4 @@ Despite how impressive being able to turn text into image is, beware to the fact
|
|
| 343 |
"""
|
| 344 |
)
|
| 345 |
|
| 346 |
-
block.queue(
|
|
|
|
| 163 |
.image_duplication{position: absolute; width: 100px; left: 50px}
|
| 164 |
"""
|
| 165 |
|
| 166 |
+
block = gr.Blocks(css=css, concurrency_limit=80)
|
| 167 |
|
| 168 |
examples = [
|
| 169 |
[
|
|
|
|
| 343 |
"""
|
| 344 |
)
|
| 345 |
|
| 346 |
+
block.queue().launch(max_threads=150, show_error=True)
|