Skip to content

Commit

Permalink
Add missing pass of self.verbose when selecting backend (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianrandman committed Jul 15, 2024
1 parent bf1fedd commit 6a40914
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bertopic/_bertopic.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,9 @@ def fit_transform(
logger.info("Embedding - Completed \u2713")
else:
if self.embedding_model is not None:
self.embedding_model = select_backend(self.embedding_model, language=self.language)
self.embedding_model = select_backend(
self.embedding_model, language=self.language, verbose=self.verbose
)

# Guided Topic Modeling
if self.seed_topic_list is not None and self.embedding_model is not None:
Expand Down

0 comments on commit 6a40914

Please sign in to comment.