You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-12Lines changed: 14 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ Consider using TopicNet if:
38
38
* you want to build a good topic model quickly (out-of-box, with default parameters).
39
39
* you have an ARTM model at hand and you want to explore it's topics.
40
40
41
-
`TopicNet` provides an infrastructure for your prototyping with the help of `Experiment` class and helps to observe results of your actions via `viewers` module.
41
+
`TopicNet` provides an infrastructure for your prototyping with the help of `Experiment` class and helps to observe results of your actions via [`viewers`](topicnet/viewers) module.
42
42
43
43
<p>
44
44
<div align="center">
@@ -159,7 +159,7 @@ Here we can finally get on the main part: making your own, best of them all, man
159
159
We need to load our data prepared previously with Dataset:
160
160
161
161
```python
162
-
data= Dataset('/Wiki_raw_set/wiki_data.csv')
162
+
dataset= Dataset('/Wiki_raw_set/wiki_data.csv')
163
163
```
164
164
165
165
### Make initial model
@@ -169,8 +169,8 @@ In case you want to start from a fresh model we suggest you use this code:
169
169
```python
170
170
from topicnet.cooking_machine.model_constructor import init_simple_default_model
0 commit comments