Welcome to the Zero to Deep Learning® Video Course repository.
git clone https://github.com/Dataweekends/zero_to_deep_learning_video.git
https://www.anaconda.com/distribution/
cd zero_to_deep_learning_video
conda env create
wait for the environment to create.
conda activate ztdl
conda activate ztdl
Check that your prompt changed to
(ztdl) $
jupyter notebook
http://localhost:8888
Go to the course folder, open the notebook 0_Check_Environment.ipynb
and run it. If you see the message:
Houston we are go!
You are good to go! Enjoy!
If for some reason you don't see Houston we are go!
, the simplest solution is to delete the environment and start from scratch again.
To remove the environment:
- close the browser and go back to your terminal
- stop jupyter notebook (CTRL-C)
- deactivate the environment (Mac/Linux):
conda deactivate
- deactivate the environment (Windows 10):
deactivate ztdl
- delete the environment:
conda remove -y -n ztdl --all
- restart from environment creation and make sure that each steps completes till the end.
One thing you can also try is to update your conda executable. This may help if you already had Anaconda installed on your system.
conda update conda
These instructions have been tested on:
- Mac OSX Sierra 10.15.7
- Ubuntu 18.04
- Windows 10
Google offers a free platform to run Jupyter notebooks called Google Colaboratory. You need a Gmail or Google Apps email address to use it.
Follow these steps:
- Open your browser and go to https://colab.research.google.com/
- Choose the GITHUB tab and paste the repository address:
https://github.com/Dataweekends/zero_to_deep_learning_video
in the search bar. - Click on the notebook you would like to run
- Enable GPU support in the
Edit -> Notebook Settings
menu - Enjoy running the notebook with GPU support!
- If the notebook loads data from the repo you will have to download the data too. Follow these steps to do that:
- Create a code cell at the top of the notebook
- Clone the repository in Colab:
!git clone https://github.com/Dataweekends/zero_to_deep_learning_video.git
- Replace the
../data
path withzero_to_deep_learning_video/data
in the cell that loads the data. - Enjoy!