This is the repository for my workshop Machine Learning for Software Developers at CH Open Workshop Days 2017.
Here you will find the environment to follow the workshop and to run the exercises and the exercises themselves along with suggested solutions. After the workshop is over, I'll upload the slides as well.
- Install Docker
- Download for Windows 10
- Download for Windows < 10
- Download for Mac
- For Linux: Go to the main page and choose "Get Docker" at the top of the screen
- Start Docker Service
- Create a directory to hold workshop files
-
Open terminal
-
Execute
docker run -d --init --rm --mount type=bind,src=/home/yourname/your-dir-from-pt-3-above,dst=/data -p 127.0.0.1:8888:8888 tobycheese/workshop2017
(the first time you do this, the docker image will be downloaded, which will take a while)
- Open terminal
- As above but replace
/home
with/Users
- Run cmd.exe
- As above but replace
/home/yourname/your-dir-from-pt-3-above
withc:\path\to\your-dir-from-pt-3-above
- Browse to http://127.0.0.1:8888/
- Save all your open notebooks
- Find container id:
docker ps
- Stop container:
docker stop <container-id>
- Stop Docker service
- Stop container if running:
docker stop <container-id>
- Download updated image:
docker pull tobycheese/workshop2017