From 548f15f81005782f46b0fd4eeba2ae30e1f1ed57 Mon Sep 17 00:00:00 2001 From: Peter Romov Date: Fri, 17 Jul 2015 04:08:53 +0300 Subject: [PATCH] Update README.md --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 2182156..e6c4570 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,29 @@ bigartm-docker ============== + +### Get the image from DockerHub +``` +$ docker fetch romovpa/bigartm +``` + +### Run CLI +``` +$ docker run -t -i romovpa/bigartm cpp_client +``` + +### Try Python API +``` +$ docker run -t -i romovpa/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.ArtmModel() +```