Rocky080808 commited on
Commit
38a75f1
·
verified ·
1 Parent(s): 3045811

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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 in multiple languages including Chinese, Japanese, German, Spanish, and French.")
 
 
 
63
 
64
- user_input = st.text_input("Enter customer comments in supported languages:")
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"):