From 4042e744a66c174da15979206376f377f906a08c Mon Sep 17 00:00:00 2001 From: saikumaru <44021002+saikumaru@users.noreply.github.com> Date: Wed, 2 Oct 2024 09:38:52 +0530 Subject: [PATCH] Update distribution.md (#2162) topic_distr provides topic scores for each doc, i.e. n- documents and m- topics for each of that doc --- docs/getting_started/distribution/distribution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/distribution/distribution.md b/docs/getting_started/distribution/distribution.md index becee01b..6e99e913 100644 --- a/docs/getting_started/distribution/distribution.md +++ b/docs/getting_started/distribution/distribution.md @@ -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