Skip to content

Commit e85c8bb

Browse files
Add missing comma under Exploration subsection (#2374)
1 parent 13c8ed7 commit e85c8bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/getting_started/outlier_reduction/outlier_reduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ reduced_embeddings = UMAP(n_neighbors=10, n_components=2,
164164

165165
# Train our topic model
166166
topic_model = BERTopic(embedding_model=sentence_model, umap_model=umap_model,
167-
vectorizer_model=vectorizer_model calculate_probabilities=True, nr_topics=40)
167+
vectorizer_model=vectorizer_model, calculate_probabilities=True, nr_topics=40)
168168
topics, probs = topic_model.fit_transform(docs, embeddings)
169169
```
170170

0 commit comments

Comments
 (0)