This is the repository for my workshop Machine Learning for Software Developers at CH Open Workshop Days 2018.
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, I'll upload the slides as well.
- Install Docker
- Download for Windows 10
- Download for Windows < 10
- Download for Mac
- For Linux: Install Docker CE "Server" from here or install from your usual package manager
- Start Docker Service
- Clone this repository
-
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/chopen-ml-workshop-2018
(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/chopen-ml-workshop-2018