Jerimee commited on
Commit
d391c28
β€’
1 Parent(s): baf834d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -9,7 +9,8 @@ def senti(sentiment):
9
  iface = gr.Interface(
10
  fn=senti,
11
  inputs='text',
12
- outputs='text'
 
13
  )
14
 
15
  iface.launch()
 
9
  iface = gr.Interface(
10
  fn=senti,
11
  inputs='text',
12
+ outputs=['text'],
13
+ description = 'Get Sentiment Negative/positive for the given input'
14
  )
15
 
16
  iface.launch()