Spaces:
Runtime error
Runtime error
MJ
commited on
Commit
·
4e4d22d
1
Parent(s):
e25cffd
Fixed missing label in text area
Browse files
app.py
CHANGED
|
@@ -16,7 +16,8 @@ models_available = {"Roberta Large English": "siebert/sentiment-roberta-large-en
|
|
| 16 |
"Twitter Roberta": "cardiffnlp/twitter-roberta-base-sentiment"}
|
| 17 |
|
| 18 |
st.title("Sentiment Analysis Web Application")
|
| 19 |
-
text_input = st.text_area(
|
|
|
|
| 20 |
model_picked = st.selectbox(
|
| 21 |
"Choose a model to run on", options=models_available.keys())
|
| 22 |
|
|
|
|
| 16 |
"Twitter Roberta": "cardiffnlp/twitter-roberta-base-sentiment"}
|
| 17 |
|
| 18 |
st.title("Sentiment Analysis Web Application")
|
| 19 |
+
text_input = st.text_area(
|
| 20 |
+
label="Enter the text to analyze", placeholder="I Love Pizza")
|
| 21 |
model_picked = st.selectbox(
|
| 22 |
"Choose a model to run on", options=models_available.keys())
|
| 23 |
|