Spaces:
Running
Running
Commit
·
5213786
1
Parent(s):
779b64b
refactor app.py
Browse files
app.py
CHANGED
@@ -37,7 +37,8 @@ iface = gr.Interface(fn=predict_sentiment,
|
|
37 |
gr.Textbox(label="Interpretation")
|
38 |
],
|
39 |
title="TinyFinBERT Sentiment Analysis",
|
40 |
-
allow_api=True
|
41 |
)
|
42 |
|
43 |
-
iface.launch()
|
|
|
|
37 |
gr.Textbox(label="Interpretation")
|
38 |
],
|
39 |
title="TinyFinBERT Sentiment Analysis",
|
40 |
+
# allow_api=True
|
41 |
)
|
42 |
|
43 |
+
#iface.launch()
|
44 |
+
iface.launch(server_name="0.0.0.0",share=True, enable_queue=False)
|