Update app.py
Browse files
app.py
CHANGED
@@ -59,8 +59,9 @@ demo = gr.Interface(
|
|
59 |
title="Diamond Price Predictor",
|
60 |
description="This API allows you to predict the price of a diamond given its attributes",
|
61 |
allow_flagging="auto",
|
62 |
-
flagging_callback=hf_writer
|
|
|
63 |
)
|
64 |
|
65 |
-
demo.queue(
|
66 |
demo.launch(share=False)
|
|
|
59 |
title="Diamond Price Predictor",
|
60 |
description="This API allows you to predict the price of a diamond given its attributes",
|
61 |
allow_flagging="auto",
|
62 |
+
flagging_callback=hf_writer,
|
63 |
+
concurrency_limit=8
|
64 |
)
|
65 |
|
66 |
+
demo.queue()
|
67 |
demo.launch(share=False)
|