Lab 1 can be found at 6.S191-Lab1.ipynb
.
Lab 2 can be found at 6.S191-Lab2.ipynb
.
The labs are jupyter notebooks, so run jupyter notebook
in this directory, and then click on the proper file name in jupyter to open it.
Please copy the following commands to your bash terminal:
If you are using pip:
git clone https://github.com/yala/introdeeplearning;
cd introdeeplearning;
pip install virtualenv;
virtualenv intro_dl;
source intro_dl/bin/activate;
pip install --upgrade pip;
pip install tensorflow;
pip install matplotlib;
pip install pandas;
pip install jupyter;
echo 'done';
jupyter notebook
git clone https://github.com/yala/introdeeplearning;
cd introdeeplearning;
conda create -n intro_dl;
source activate intro_dl;
conda install -c conda-forge tensorflow;
pip install matplotlib;
pip install pandas;
conda install jupyter;
echo 'done';
jupyter notebook
- Just click "Clone or Download Button" and then click 'Download Zip' on this page: https://github.com/yala/introdeeplearning