You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to do both outlier and topic reduction. Intuitively I would think that the right order would be outlier reduction first (to accommodate some of the outlier documents in one of the original topics available) and topic reduction afterwards.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I want to do both outlier and topic reduction. Intuitively I would think that the right order would be outlier reduction first (to accommodate some of the outlier documents in one of the original topics available) and topic reduction afterwards.
However, I've seen the warning in the docs that running topic reduction after outlier reduction (and corresponding topic update) may lead to errors: https://maartengr.github.io/BERTopic/getting_started/outlier_reduction/outlier_reduction.html#update-topics
According to this comment, running
update_topics
should be the last step. Does this mean:reduce_outliers()
first,reduce_topics()
,update_topics()
with the new_topics from step 1?Won't the new_topics from step 1 refer to topics already reduced in step 2?
Or does the comment mean running
reduce_outliers()
and correspondingupdate_topics()
afterreduce_topics()
?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions