forked from bigartm/bigartm-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Peter Romov
committed
Jul 17, 2015
1 parent
83115a1
commit 548f15f
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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() | ||
``` |