If you are using the university provided Jupyter instance (here)
rather than your own personal computer the homeworks will automatically download into a folder in your account
called course-materials each time you login.
If you are running your own Jupyter instance use the following instructions to download the homeworks.
Open a terminal in Jupyter (Go to "new" in the upper right, then choose "terminal").
For first retrieval, clone the repository using
git clone https://github.com/brendenlake/CCM-site.git
To update the repository, enter the repository folder using
cd CCM-site
and pull new commits using
git pull
To create a copy of a HW problem set to work on in the home folder (and prevent possible merge conflicts on future pulls), run
cd ~
cp -r PATH/TO/HW .
For example, for homework 1 you would type
cp -r CCM-site/homeworks/1-NeuralNet .
(don't forget trailing .)