Skip to content

Commit 4ec72c1

Browse files
committed
list -> titles
1 parent 9074f03 commit 4ec72c1

File tree

1 file changed

+31
-12
lines changed

1 file changed

+31
-12
lines changed

topicnet/viewers/README.md

Lines changed: 31 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,28 @@ Its advantage is in unified call ifrastucture to the topic model making the rout
55

66
Currently module contains the following viewers:
77

8-
* `base_viewer` (`BaseViewer`) — module responsible for base infrastructure.
8+
## `base_viewer` (`BaseViewer`)
99

10-
* `document_cluster` (`DocumentClusterViewer`) — module which allows to visualize collection documents. May be slow for large document collections as it uses TSNE algorithm from [sklearn](https://scikit-learn.org/stable/modules/generated/sklearn.manifold.TSNE.html) library.
10+
Module responsible for base infrastructure.
11+
12+
13+
## `document_cluster` (`DocumentClusterViewer`)
14+
15+
Module which allows to visualize collection documents. May be slow for large document collections as it uses TSNE algorithm from [sklearn](https://scikit-learn.org/stable/modules/generated/sklearn.manifold.TSNE.html) library.
1116

1217
<p>
1318
<div align="center">
1419
<img src="../docs/images/doc_cluster__plot.png" width="80%" alt/>
1520
</div>
16-
<div align="center">
17-
<em>
18-
Visualisation of reduced document embeddings colored according to their topicspic made by DocumentClusterViewer.
19-
</em>
20-
</div>
21+
<em>
22+
Visualisation of reduced document embeddings colored according to their topic made by DocumentClusterViewer.
23+
</em>
2124
</p>
2225

23-
* `spectrum` (`TopicSpectrumViewer`) — module contains heuristics for solving TSP to arrange topics minimizing total distance of the spectrum.
26+
27+
## `spectrum` (`TopicSpectrumViewer`)
28+
29+
Module contains heuristics for solving TSP to arrange topics minimizing total distance of the spectrum.
2430

2531
<p>
2632
<div align="center">
@@ -32,7 +38,10 @@ Currently module contains the following viewers:
3238
</em>
3339
</p>
3440

35-
* `top_documents_viewer` (`TopDocumentsViewer`) — module with functions that work with dataset document collections.
41+
42+
## `top_documents_viewer` (`TopDocumentsViewer`)
43+
44+
Module with functions that work with dataset document collections.
3645

3746
<p>
3847
<div align="center">
@@ -43,7 +52,10 @@ Currently module contains the following viewers:
4352
</em>
4453
</p>
4554

46-
* `top_similar_documents_viewer` (`TopSimilarDocumentsViewer`) — module containing class for finding similar document for a given one. This viewer helps to estimate homogeneity of clusters given by the model.
55+
56+
## `top_similar_documents_viewer` (`TopSimilarDocumentsViewer`)
57+
58+
Module containing class for finding similar document for a given one. This viewer helps to estimate homogeneity of clusters given by the model.
4759

4860
<p>
4961
<div align="center">
@@ -55,7 +67,10 @@ Currently module contains the following viewers:
5567
</em>
5668
</p>
5769

58-
* `top_tokens_viewer` (`TopTokensViewer`) — module with class for displaying the most relevant tokens in each topic of the model.
70+
71+
## `top_tokens_viewer` (`TopTokensViewer`)
72+
73+
Module with class for displaying the most relevant tokens in each topic of the model.
5974

6075
<p>
6176
<div align="center">
@@ -66,7 +81,10 @@ Currently module contains the following viewers:
6681
</em>
6782
</p>
6883

69-
* `topic_mapping` (`TopicMapViewer`) — module allowing to compare topics between two different models trained on the same collection.
84+
85+
## `topic_mapping` (`TopicMapViewer`)
86+
87+
Module allowing to compare topics between two different models trained on the same collection.
7088

7189
<p>
7290
<div align="center">
@@ -77,6 +95,7 @@ Currently module contains the following viewers:
7795
</em>
7896
</p>
7997

98+
8099
## Deprecated
81100

82101
* `initial_doc_to_topic_viewer` — first edition of `TopDocumentsViewer`

0 commit comments

Comments
 (0)