elliottmurray / ml_training

test

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Setup

Run the following commands:

docker build -t dius_ml .
docker run -it  -v `pwd`/classes:/opt/notebooks/classes  -p 8888:8888 dius_ml

Open the url in the console.

To create a new class follow the pattern of in the classes directory:

classn_classname

where n is the class. With the volume mount above you will be changing the jupyter notebook (causing changes on the working tree) If you want to keep it you will have to do a commit on your own branch. Otherwise a git hard reset or clean should work.

To run just the python repl you can:

docker run -it  -v `pwd`/classes:/opt/notebooks/classes  -p 8888:8888 dius_ml python

To run a file in the current directory:

docker run -it  -v `pwd`:/opt/notebooks/  -p 8888:8888 dius_ml python <file.python>

About

test


Languages

Language:Jupyter Notebook 99.9%Language:Shell 0.1%