Skip to content

tbSilence/ntds_2017

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Network Tour of Data Science, edition 2017

Binder   (Jupyter lab or notebook)

This repository contains the material for the labs associated with the EPFL master course EE-558 A Network Tour of Data Science (moodle), taught in autumn 2017. Compared to the 2016 edition, the course has been refocused on graph and network sciences. It is further developed in the 2018 edition. The course material revolves around the following topics:

  1. Network Science,
  2. Spectral Graph Theory,
  3. Graph Signal Processing,
  4. Machine Learning.

Below is the material you'll find in that repository:

  1. Practical informations
  2. Installation instructions
  3. Introduction: conda & Anaconda, Python, Jupyter, git, scientific Python
  4. Network properties: twitter demo, numpy demo, assignment, solution, student solution, feedback
  5. Network models: networkx demo, matplotlib demo, assignment, solution
  6. Spectral graph theory: web API and pandas demo, assignment, solution, feedback
  7. Data exploration and visualization demo
  8. Graph signal processing: demo, assignment, solution, feedback
  9. Concluding remarks

As a Data Science course, the above activities are realized on real networks, e.g. a social network from Twitter, that students have to collect and clean themselves.

Projects

Part of the course is evaluated by a project (see the description), proposed and carried out by groups of three to four students. Below is their work.

Usage

Click the binder badge to play with the notebooks from your browser without installing anything.

For a local installation, you will need git, Python, and packages from the Python scientific stack. If you don't know how to install those on your platform, we recommend to install Miniconda, a distribution of the conda package and environment manager. Please follow the below instructions to install it and create an environment for the course.

  1. Download the Python 3.x installer for Windows, macOS, or Linux from https://conda.io/miniconda.html and install with default settings. Skip this step if you have conda already installed (from Miniconda or Anaconda). Linux users may prefer to use their package manager.
    • Windows: Double-click on the .exe file.
    • macOS: Run bash Miniconda3-latest-MacOSX-x86_64.sh in your terminal.
    • Linux: Run bash Miniconda3-latest-Linux-x86_64.sh in your terminal.
  2. Open a terminal. Windows: open the Anaconda Prompt from the Start menu.
  3. Install git with conda install git.
  4. Download this repository by running git clone --recurse-submodules https://github.com/mdeff/ntds_2017.
  5. Create an environment with the packages required for the course with conda env create -f ntds_2017/environment.yml.

Every time you want to work, do the following:

  1. Open a terminal. Windows: open the Anaconda Prompt from the Start menu.
  2. Activate the environment with conda activate ntds_2017 (or activate ntds_2017, or source activate ntds_2017).
  3. Start Jupyter with jupyter notebook or jupyter lab. The command should open a new tab in your web browser.
  4. Edit and run the notebooks from your browser.

About

Material for the EPFL master course "A Network Tour of Data Science", edition 2017.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.8%
  • Python 0.2%
  • JavaScript 0.0%
  • HTML 0.0%
  • TeX 0.0%
  • CSS 0.0%