unknown commited on
Commit
e26ff85
1 Parent(s): 57d96f7

output label change

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def make_prediction(tweet):
17
  return y[0][0]
18
 
19
  tweet_input = gr.Textbox(label = "Enter the tweet")
20
- output = gr.Number()
21
 
22
 
23
  app = gr.Interface(fn = make_prediction, inputs=tweet_input , outputs=output, title="COVID News Ground Reality Predictor")
 
17
  return y[0][0]
18
 
19
  tweet_input = gr.Textbox(label = "Enter the tweet")
20
+ output = gr.Number(label = "Probability of a True claim")
21
 
22
 
23
  app = gr.Interface(fn = make_prediction, inputs=tweet_input , outputs=output, title="COVID News Ground Reality Predictor")