Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -78,11 +78,12 @@ interface = gr.Interface(
|
|
| 78 |
["How many customers have subscribed to a term deposit?", ""],
|
| 79 |
["How many customers have defaulted on loans?", ""],
|
| 80 |
["Do customers who default maintain a low balance?", ""]
|
| 81 |
-
]
|
|
|
|
| 82 |
)
|
| 83 |
|
| 84 |
with gr.Blocks() as demo:
|
| 85 |
interface.launch()
|
| 86 |
|
| 87 |
-
demo.queue(
|
| 88 |
demo.launch()
|
|
|
|
| 78 |
["How many customers have subscribed to a term deposit?", ""],
|
| 79 |
["How many customers have defaulted on loans?", ""],
|
| 80 |
["Do customers who default maintain a low balance?", ""]
|
| 81 |
+
],
|
| 82 |
+
concurrency_limit=16
|
| 83 |
)
|
| 84 |
|
| 85 |
with gr.Blocks() as demo:
|
| 86 |
interface.launch()
|
| 87 |
|
| 88 |
+
demo.queue()
|
| 89 |
demo.launch()
|