Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -32,17 +32,17 @@ def main():
|
|
32 |
fn=model.predict,
|
33 |
inputs=gr.inputs.Textbox(
|
34 |
lines=3,
|
35 |
-
placeholder="
|
36 |
label="Input Text",
|
37 |
),
|
38 |
outputs="label",
|
39 |
title="Emotion Classification",
|
40 |
examples=[
|
41 |
-
"
|
42 |
-
"
|
43 |
-
"
|
44 |
-
"
|
45 |
-
"
|
46 |
],
|
47 |
)
|
48 |
|
|
|
32 |
fn=model.predict,
|
33 |
inputs=gr.inputs.Textbox(
|
34 |
lines=3,
|
35 |
+
placeholder="Please type a sentence, this program will do the sentiment analysis ",
|
36 |
label="Input Text",
|
37 |
),
|
38 |
outputs="label",
|
39 |
title="Emotion Classification",
|
40 |
examples=[
|
41 |
+
"To be or not to be, that’s a question.",
|
42 |
+
"Better a witty fool than a foolish wit.",
|
43 |
+
"No matter how long night, the arrival of daylight Association.",
|
44 |
+
"The retention will never give up.",
|
45 |
+
"My only love sprung from my only hate.",
|
46 |
],
|
47 |
)
|
48 |
|