Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -59,9 +59,12 @@ def main():
|
|
59 |
sentiment_pipeline = load_sentiment_pipeline()
|
60 |
|
61 |
st.title("Global Customer Reviews Sentiment Analyzer")
|
62 |
-
st.write("Analyze customer sentiment
|
|
|
|
|
|
|
63 |
|
64 |
-
user_input = st.text_input("Enter customer
|
65 |
|
66 |
# 用户点击分析按钮后触发
|
67 |
if st.button("Analyze"):
|
|
|
59 |
sentiment_pipeline = load_sentiment_pipeline()
|
60 |
|
61 |
st.title("Global Customer Reviews Sentiment Analyzer")
|
62 |
+
st.write("Analyze customer sentiment by their reviews. Please input the customer reviews to get the sentiment analysis result.")
|
63 |
+
st.write("Support 6 languages: English, Chinese, Japanese, German, Spanish and French.")
|
64 |
+
st.write("For example, by inputting: I like the product very much!")
|
65 |
+
st.write("The application will tell you: Very satisfied, the customer is very likely to return and recommend.")
|
66 |
|
67 |
+
user_input = st.text_input("Enter customer reviews here and press Analyze:")
|
68 |
|
69 |
# 用户点击分析按钮后触发
|
70 |
if st.button("Analyze"):
|