PierreNowi / GML2023

Graph Machine Learning course, Xavier Bresson, 2023

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Graph Machine Learning course, 2023

Xavier Bresson



Course slides

https://storage.googleapis.com/xavierbresson/index.html



Cloud Machine : Google Colab (Free GPU)



Local Installation for OSX & Linux

  • 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
   curl https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -o miniconda.sh -J -L -k # OSX
   chmod +x miniconda.sh
   ./miniconda.sh
   source ~/.bashrc

   # Clone GitHub repo
   git clone https://github.com/xbresson/GML2023.git
   cd GML2023

   # Install python libraries
   conda env create -f environment.yml
   source activate gnn_course

   # Run the notebooks in Chrome
   jupyter notebook

Local Installation for Windows

   # 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/GML2023.git
   cd GML2023

   # Install python libraries
   conda env create -f environment.yml
   conda activate gnn_course

   # Run the notebooks in Chrome
   jupyter notebook

About

Graph Machine Learning course, Xavier Bresson, 2023

License:MIT License


Languages

Language:Jupyter Notebook 99.1%Language:Python 0.7%Language:C++ 0.2%Language:Makefile 0.0%