-
Notifications
You must be signed in to change notification settings - Fork 17
Description
Hi. Thank you for great job with that topic modeling library.
Docs say that pip install topicnet also installs BigARTM library, but looks like I've faced with some issue.
I'm trying to use library with Jupyter inside docker and have minimal Dockerfile:
FROM jupyter/datascience-notebook
RUN pip install topicnet
Then I'm trying to verify installation with import artm command in notebook, but getting error like ModuleNotFoundError: No module named 'artm'.
I've tried to figure out if topicnet installed properly with import topicnet command - looks like it works.
Then i tried to run from topicnet.cooking_machine import Dataset but it exited with error caused by artm installation again:
ModuleNotFoundError Traceback (most recent call last)
Cell In[25], line 1
----> 1 from topicnet.cooking_machine import Dataset
File /opt/conda/lib/python3.11/site-packages/topicnet/cooking_machine/__init__.py:1
----> 1 from .dataset import Dataset
2 from .dataset import BaseDataset
3 from .experiment import Experiment
File /opt/conda/lib/python3.11/site-packages/topicnet/cooking_machine/dataset.py:4
2 import os
3 import warnings
----> 4 import artm
5 import shutil
7 from glob import glob
ModuleNotFoundError: No module named 'artm'
Should I install bigartm manually (then docs are not actual?) or I'm missing something about proper topicnet installation?
Regards, Nikolay