entropy25 commited on
Commit
457c1e5
·
verified ·
1 Parent(s): f104eaf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -6
app.py CHANGED
@@ -1044,12 +1044,27 @@ class SentimentApp:
1044
 
1045
  # Multi-language examples
1046
  self.examples = [
1047
- ["This movie was absolutely fantastic! The acting was superb and the plot kept me engaged throughout."],
1048
- ["The film was disappointing with poor character development and a confusing storyline."],
1049
- ["这部电影真的很棒!演技精湛,情节引人入胜。"], # Chinese
1050
- ["Esta película fue increíble, me encantó la cinematografía."], # Spanish
1051
- ["Ce film était magnifique, j'ai adoré la réalisation."], # French
1052
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1053
 
1054
  @handle_errors(default_return=("Please enter text", None, None))
1055
  def analyze_single(self, text: str, language: str, theme: str, clean_text: bool,
 
1044
 
1045
  # Multi-language examples
1046
  self.examples = [
1047
+ # Auto Detect
1048
+ ["The film had its moments, but overall it felt a bit too long and lacked emotional depth. Some scenes were visually impressive, yet they failed to connect emotionally. By the end, I found myself disengaged and unsatisfied."],
1049
+
1050
+ # English
1051
+ ["I was completely blown away by the movie — the performances were raw and powerful, and the story stayed with me long after the credits rolled. Every scene felt purposeful, and the emotional arc was handled with incredible nuance. It's the kind of film that makes you reflect deeply on your own life."],
1052
+
1053
+ # Chinese
1054
+ ["这部电影节奏拖沓,剧情老套,完全没有让我产生任何共鸣,是一次失望的观影体验。演员的表演也显得做作,缺乏真实感。看到最后甚至有点不耐烦,整体表现乏善可陈。"],
1055
+
1056
+ # Spanish
1057
+ ["Una obra maestra del cine contemporáneo, con actuaciones sobresalientes, un guion bien escrito y una dirección impecable. Cada plano parecía cuidadosamente pensado, y la historia avanzaba con una intensidad emocional que mantenía al espectador cautivado. Definitivamente una película que vale la pena volver a ver."],
1058
+
1059
+ # French
1060
+ ["Je m'attendais à beaucoup mieux. Le scénario était confus, les dialogues ennuyeux, et je me suis presque endormi au milieu du film. Même la mise en scène, habituellement un point fort, manquait cruellement d'inspiration cette fois-ci."],
1061
+
1062
+ # German
1063
+ ["Der Film war ein emotionales Erlebnis mit großartigen Bildern, einem mitreißenden Soundtrack und einer Geschichte, die zum Nachdenken anregt. Besonders beeindruckend war die schauspielerische Leistung der Hauptdarsteller, die eine tiefe Menschlichkeit vermittelten. Es ist ein Film, der lange nachwirkt."],
1064
+
1065
+ # Swedish
1066
+ ["Filmen var en besvikelse – tråkig handling, överdrivet skådespeleri och ett slut som inte gav något avslut alls. Den kändes forcerad och saknade en tydlig röd tråd. Jag gick från biografen med en känsla av tomhet och frustration."]
1067
+ ]
1068
 
1069
  @handle_errors(default_return=("Please enter text", None, None))
1070
  def analyze_single(self, text: str, language: str, theme: str, clean_text: bool,