sparrow8i8 commited on
Commit
d7ba81d
·
1 Parent(s): aa71662

changed textbox

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def classify(img):
14
 
15
  title = "Text sentiment classifier"
16
  description = "This model classifies a sentence of text as having a positive or negative setiment"
17
- text = gr.TextBox()
18
  label= gr.Label()
19
 
20
  intf=gr.Interface(fn=classify,inputs=text,outputs=label,title=title, description=description)
 
14
 
15
  title = "Text sentiment classifier"
16
  description = "This model classifies a sentence of text as having a positive or negative setiment"
17
+ text = gr.Textbox()
18
  label= gr.Label()
19
 
20
  intf=gr.Interface(fn=classify,inputs=text,outputs=label,title=title, description=description)