Installation as Docker container

On any OS it is possible to run BigARTM as docker container.

  1. Get the image from DockerHub
docker pull ofrei/bigartm
  1. Run CLI
docker run -t -i ofrei/bigartm bigartm
  1. Try Python API (use ipython2 or ipython3 depending on which python version you prefer)
$ docker run -t -i ofrei/bigartm ipython2
Python 2.7.6 (default, Jun 22 2015, 17:58:13)
Type "copyright", "credits" or "license" for more information.

IPython 3.2.1 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]: import artm

In [2]: model = artm.ARTM()

See bigartm-docker repo for more information.