Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -8,6 +8,9 @@ sentiment_pipeline = pipeline("sentiment-analysis")
|
|
| 8 |
st.title("Sentiment Analysis")
|
| 9 |
st.write("Enter text below to analyse the sentiment.")
|
| 10 |
st.write("You can copy and paste a comment from social media for example.")
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
# Text input
|
| 13 |
user_input = st.text_area("Text input")
|
|
|
|
| 8 |
st.title("Sentiment Analysis")
|
| 9 |
st.write("Enter text below to analyse the sentiment.")
|
| 10 |
st.write("You can copy and paste a comment from social media for example.")
|
| 11 |
+
st.write("Usage idea: Companies can now reach those unhappy customers who leave unhappy comments on social media before they leave a bad review.")
|
| 12 |
+
st.write("You can then gather a list of names for your customer services team to prioritise and make that crucial early contact.")
|
| 13 |
+
st.write("Be proactive, not reactive")
|
| 14 |
|
| 15 |
# Text input
|
| 16 |
user_input = st.text_area("Text input")
|