TopicNet
TopicNet copied to clipboard
Interface for easier topic modelling.
I have been struggling with the installation of the original library, BigARTM, for quite a while now, on Windows 10 OS but with no success. I saw my same issue...
I've tried to access `postnauka` dataset using `demo_data = load_dataset('postnauka')` Unfortunately, `topicnet` produced error: ``` HTTPError: HTTP Error 502: Bad Gateway ```
this should fix the large part of #79
The link to RTL-Wiki dataset provided in RTL-Wiki-Preprocessing.ipynb (http://139.18.2.164/mroeder/palmetto/datasets/rtl-wiki.tar.gz) points to non-existing file (error 404 is returned). After some search, I've found this one: https://hobbitdata.informatik.uni-leipzig.de/homes/mroeder/palmetto/datasets/rtl-wiki.tar.gz
 :cry: `np.ravel(ind > 0)` :smile: `np.ravel(ind != 0)` P.S. `0.000000001 != 0` -> Ok?
```python import topicnet dataset = topicnet.cooking_machine.Dataset(...) model = topicnet.cooking_machine.models.TopicModel(...) cube = CubeCreator( num_iter=10, parameters={ "seed": [11221963], "num_topics": [5, 10] } ) exp = Experiment( model, experiment_id='exp1', save_path='should_not_be_created', save_experiment=False ) cube(model,...
на моей практике очень полезно разделять скор трекеры на фоновые и предметные. Есть такой параметр, как спарсити и мне важно чтобы он рос для предметных тем и опускался для фоновых....
issue создан для того, чтобы обсудить возможность создания вьюера, где можно посмотреть как линкуются между собой документы и ключевые слова темы. На данном этапе есть два отдельных вьюера. TopDocumrntViewer которые...
Currently multiprocessing may lead to the fact that tests fail from time to time. It means that builds may be red even there is all OK with the code. The...
* Create a `dataset` * Call `dataset.get_dictionary()` * Change dataset's `_data` by renaming one of modalities (eg. *lemmatized* -> *new_lemmatized*) * Try to build a topic model using the `dataset`...