Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion bertopic/_bertopic.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,10 @@ def transform(self,
""" After having fit a model, use transform to predict new instances

Arguments:
documents: A single document or a list of documents to predict on
documents: A single document or a list of documents for which to predict topic(s).
NOTE: When using HDBSCAN, predictions may differ depending on whether
a single document or a list of documents is provided, as HDBSCAN
leverages the presence of other data points during prediction.
embeddings: Pre-trained document embeddings. These can be used
instead of the sentence-transformer model.
images: A list of paths to the images to predict on or the images themselves
Expand Down