Neural Networks and Deep Learning, NUS CS5242, 2025
https://storage.googleapis.com/xavierbresson/index.html
-
Follow this Notebook installation :
https://colab.research.google.com/github/xbresson/CS5242_2025/blob/main/installation/installation.ipynb -
Open your Google Drive :
https://www.google.com/drive -
Open in Google Drive Folder 'CS5242_2025' and go to Folder 'CS5242_2025/codes/'
Select the notebook 'file.ipynb' and open it with Google Colab using Control Click + Open With Colaboratory
- Open a Terminal and type
# Conda installation
curl https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-arm64.sh -o miniconda.sh -J -L -k # OSX M
chmod +x miniconda.sh
./miniconda.sh
source ~/.bashrc
# Clone GitHub repo
git clone https://github.com/xbresson/CS5242_2025.git
cd CS5242_2025
# Install python libraries
conda env create -f environment_osx_arm64.yml
conda activate deeplearn_course
# Run the notebooks in Chrome
jupyter notebook- Open a Terminal and type
# Conda installation
curl https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -o miniconda.sh -J -L -k # OSX Intel
chmod +x miniconda.sh
./miniconda.sh
source ~/.bashrc
# Clone GitHub repo
git clone https://github.com/xbresson/CS5242_2025.git
cd CS5242_2025
# Install python libraries
conda env create -f environment_osx_intel.yml
conda activate deeplearn_course
# Run the notebooks in Chrome
jupyter notebook- Open a Terminal and type
# Conda installation
curl https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o miniconda.sh -J -L -k # Linux
chmod +x miniconda.sh
./miniconda.sh
source ~/.bashrc
# Clone GitHub repo
git clone https://github.com/xbresson/CS5242_2025.git
cd CS5242_2025
# Install python libraries
conda env create -f environment_linux.yml
conda activate deeplearn_course
# Run the notebooks in Chrome
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/CS5242_2025.git
cd CS5242_2025
# Install python libraries
conda env create -f environment_win64.yml
conda activate deeplearn_course
# Run the notebooks in Chrome
jupyter notebook