Skip to content

Commit

Permalink
Replaced highest_ranking_documents with representative_documents in d…
Browse files Browse the repository at this point in the history
…ocs.
  • Loading branch information
x-tabdeveloping committed Mar 22, 2024
1 parent 1a69860 commit 1642779
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ model.print_topics()

```python
# Print highest ranking documents for topic 0
model.print_highest_ranking_documents(0, corpus, document_topic_matrix)
model.print_representative_documents(0, corpus, document_topic_matrix)
```

<center>
Expand Down Expand Up @@ -217,7 +217,7 @@ csv_table: str = model.export_topic_distribution("something something", format="

latex_table: str = model.export_topics(format="latex")

md_table: str = model.export_highest_ranking_documents(0, corpus, document_topic_matrix, format="markdown")
md_table: str = model.export_representative_documents(0, corpus, document_topic_matrix, format="markdown")
```

### Visualization
Expand Down

0 comments on commit 1642779

Please sign in to comment.