MAli7319 commited on
Commit
78f0b35
·
1 Parent(s): f0c39a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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..."),, outputs="text")
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()