Skip to content

Commit

Permalink
Update distribution.md (MaartenGr#2162)
Browse files Browse the repository at this point in the history
topic_distr provides topic scores for each doc, i.e. n- documents and m- topics for each of that doc
  • Loading branch information
saikumaru authored Oct 2, 2024
1 parent eba1d34 commit 4042e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/getting_started/distribution/distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ After doing so, we can approximate the topic distributions for your documents:
topic_distr, _ = topic_model.approximate_distribution(docs)
```

The resulting `topic_distr` is a *n* x *m* matrix where *n* are the topics and *m* the documents. We can then visualize the distribution
The resulting `topic_distr` is a *n* x *m* matrix where *n* are the documents and *m* the topics. We can then visualize the distribution
of topics in a document:

```python
Expand Down

0 comments on commit 4042e74

Please sign in to comment.