Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -58,5 +58,5 @@ def take_input(model):
|
|
58 |
cons_tuned_svr, _, _, _, _ = sample_model(data, SVR(C=3, kernel="rbf", tol=0.001))
|
59 |
|
60 |
|
61 |
-
iface = gr.Interface(fn=take_input, inputs=gr.Textbox(lines=2, placeholder="Write your comment here...")
|
62 |
iface.launch()
|
|
|
58 |
cons_tuned_svr, _, _, _, _ = sample_model(data, SVR(C=3, kernel="rbf", tol=0.001))
|
59 |
|
60 |
|
61 |
+
iface = gr.Interface(fn=take_input, inputs=gr.Textbox(lines=2, placeholder="Write your comment here..."), outputs=["text", "number"])
|
62 |
iface.launch()
|