动态主题模型路径

Dynamic Topic Model Path

感谢您的光临!我对动态主题模型路径有疑问:

>>> from gensim.test.utils import common_corpus, common_dictionary
>>> from gensim.models.wrappers import DtmModel
>>>
>>> path_to_dtm_binary = "/path/to/dtm/binary"
>>> model = DtmModel(
...     path_to_dtm_binary, corpus=common_corpus, id2word=common_dictionary,
...     time_slices=[1] * len(common_corpus)

动态主题模型二进制文件的路径是什么?那是我需要安装或下载的东西吗?我在哪里可以安装或下载它?

谢谢!

根据 here,您可以选择以下两种方式之一:

  1. 为来自 https://github.com/magsilva/dtm/tree/master/bin

  2. 的 OS 版本使用预编译的二进制文件
  3. 从 /blei-lab/dtm 手动编译二进制文件(原始指令在 https://github.com/blei-lab/dtm/blob/master/README.md 中可用),或使用此

git clone https://github.com/blei-lab/dtm.git
sudo apt-get install libgsl0-dev
cd dtm/dtm
make