kambris commited on
Commit
e8e9aaf
·
verified ·
1 Parent(s): d27844e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -225,14 +225,14 @@ def format_emotions(emotion_counts):
225
  })
226
  return formatted_emotions
227
 
228
- def process_and_summarize(df, bert_tokenizer, bert_model, emotion_classifier, top_n=50, topic_strategy="Auto", n_topics=None, min_topic_size=5):
229
  """Process the data and generate summaries with flexible topic configuration."""
230
  summaries = []
231
 
232
  topic_model_params = {
233
  "language": "arabic",
234
  "calculate_probabilities": True,
235
- "min_topic_size": 5,
236
  "n_gram_range": (1, 1),
237
  "top_n_words": 15,
238
  "verbose": True,
@@ -398,7 +398,7 @@ if uploaded_file is not None:
398
  top_n=top_n,
399
  topic_strategy=topic_strategy,
400
  n_topics=n_topics if topic_strategy == "Manual" else None,
401
- min_topic_size=5
402
  )
403
 
404
  if summaries:
 
225
  })
226
  return formatted_emotions
227
 
228
+ def process_and_summarize(df, bert_tokenizer, bert_model, emotion_classifier, top_n=50, topic_strategy="Auto", n_topics=None, min_topic_size=3):
229
  """Process the data and generate summaries with flexible topic configuration."""
230
  summaries = []
231
 
232
  topic_model_params = {
233
  "language": "arabic",
234
  "calculate_probabilities": True,
235
+ "min_topic_size": 3,
236
  "n_gram_range": (1, 1),
237
  "top_n_words": 15,
238
  "verbose": True,
 
398
  top_n=top_n,
399
  topic_strategy=topic_strategy,
400
  n_topics=n_topics if topic_strategy == "Manual" else None,
401
+ min_topic_size=3
402
  )
403
 
404
  if summaries: