nowaff commited on
Commit
7ff1d07
·
verified ·
1 Parent(s): c8ab494

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -8,7 +8,8 @@ def analyze(text):
8
  return result
9
 
10
  demo = gr.Interface(fn=analyze,
11
- inputs="text",
12
- outputs="text")
 
13
 
14
  demo.launch(debug=True)
 
8
  return result
9
 
10
  demo = gr.Interface(fn=analyze,
11
+ inputs=[inputs="text", label="input text here"],
12
+ outputs="text",
13
+ title = "sentiment")
14
 
15
  demo.launch(debug=True)