IsaacSarps commited on
Commit
f51156d
·
1 Parent(s): b6fa0f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -42,10 +42,12 @@ demo = gr.Interface(
42
  inputs=gr.Textbox(placeholder="Share your thoughts on COVID vaccines..."),
43
  outputs="label",
44
  interpretation="default",
45
- examples=[["I feel confident about covid vaccines."]
46
- ["i do not like the covid vaccine"],
47
- ["i like the covid vaccine"],
48
- ["the covid vaccine is effective"]],
 
 
49
  title="COVID Vaccine Sentiment Analysis",
50
  description="An AI model that predicts sentiment about COVID vaccines, providing labels and probabilities for 'NEGATIVE', 'NEUTRAL', and 'POSITIVE' sentiments.",
51
  theme="default",
 
42
  inputs=gr.Textbox(placeholder="Share your thoughts on COVID vaccines..."),
43
  outputs="label",
44
  interpretation="default",
45
+ examples=examples=[
46
+ ["I feel confident about covid vaccines"],
47
+ ["I do not like the covid vaccine"],
48
+ ["I like the covid vaccines"],
49
+ ["The covid vaccine is effective"]
50
+ ],
51
  title="COVID Vaccine Sentiment Analysis",
52
  description="An AI model that predicts sentiment about COVID vaccines, providing labels and probabilities for 'NEGATIVE', 'NEUTRAL', and 'POSITIVE' sentiments.",
53
  theme="default",