Deep learning course CE7454, 2020
-
Follow this Notebook installation :
https://colab.research.google.com/github/xbresson/CE7454_2020/blob/master/codes/installation/installation.ipynb -
Open your Google Drive :
https://www.google.com/drive -
Open in Google Drive Folder 'CE7454_2020' and go to Folder 'CE7454_2020/codes/'
Select the notebook 'file.ipynb' and open it with Google Colab using Control Click + Open With Colaboratory
- Simply click here
- Open a Terminal and type
# Conda installation
curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh # Linux
curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh # OSX
chmod +x ~/miniconda.sh
./miniconda.sh
source ~/.bashrc
# Clone GitHub repo
git clone https://github.com/xbresson/CE7454_2020.git
cd CE7454_2020
# Install python libraries
conda env create -f environment.yml
source activate deeplearn_course
# Run the notebooks
jupyter notebook
# Install Anaconda
https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe
# Open an Anaconda Terminal
Go to Application => Anaconda3 => Anaconda Prompt
# Install git : Type in terminal
conda install git
# Clone GitHub repo
git clone https://github.com/xbresson/CE7454_2020.git
cd CE7454_2020
# Install python libraries
conda env create -f environment_windows.yml
conda activate deeplearn_course
# Run the notebooks
jupyter notebook