AIEcosystem commited on
Commit
7521384
·
verified ·
1 Parent(s): cb74a47

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -94,7 +94,7 @@ def perform_topic_modeling(df_entities, num_topics=2, num_top_words=10):
94
  N = min(num_top_words, len(documents))
95
  try:
96
  tfidf_vectorizer = TfidfVectorizer(
97
- max_df=0.95,
98
  min_df=1,
99
  stop_words='english'
100
  )
 
94
  N = min(num_top_words, len(documents))
95
  try:
96
  tfidf_vectorizer = TfidfVectorizer(
97
+ max_df=1,
98
  min_df=1,
99
  stop_words='english'
100
  )