forked from MaartenGr/BERTopic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Perform hierarchical topic modeling with `.hierarchical_topics` * Visualize hierarchical topic representations with `.visualize_hierarchy` * Extract a text-based hierarchical topic representation with `.get_topic_tree` * Visualize 2D documents with `.visualize_documents()` * Visualize 2D hierarchical documents with `.visualize_hierarchical_documents()` * Create custom labels to the topics throughout most visualizations with `.generate_topic_labels` and `.set_topic_labels` * Manually merge topics with `.merge_topics()` * Added example for finding similar topics between two models in the tips & tricks page * Add multi-modal example in the tips & tricks page * Added native Hugging Face transformers support
- Loading branch information
Showing
35 changed files
with
2,878 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from bertopic._bertopic import BERTopic | ||
|
||
__version__ = "0.10.0" | ||
__version__ = "0.11.0" | ||
|
||
__all__ = [ | ||
"BERTopic", | ||
|
Oops, something went wrong.