MAli7319 commited on
Commit
8ec8246
·
1 Parent(s): 763fccc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -81,6 +81,6 @@ with gr.Blocks() as demo:
81
  posscore = gr.Number(label="Positivity Score")
82
  compscore = gr.Number(label="Compound Score")
83
  rating = gr.Number(label="Generated Rating from Your Comment")
84
- button.click(fn=take_input, inputs=[cons_tuned_svr, "text"], outputs=[negscore, neuscore, posscore, compscore, rating])
85
 
86
  demo.launch()
 
81
  posscore = gr.Number(label="Positivity Score")
82
  compscore = gr.Number(label="Compound Score")
83
  rating = gr.Number(label="Generated Rating from Your Comment")
84
+ button.click(fn=take_input(cons_tuned_svr), inputs=["text"], outputs=[negscore, neuscore, posscore, compscore, rating])
85
 
86
  demo.launch()