Spaces:
Runtime error
Runtime error
Commit
·
f51156d
1
Parent(s):
b6fa0f7
Update app.py
Browse files
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=[
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
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",
|