18–29 janv. 2021
Zoom space
Fuseau horaire Europe/Paris

Hands-on session preparation *before coming*

Hands-on session preparation before coming!

Hands-on sessions take place online. 

We are happy to share with you an exciting experience about Statistics & Machine Learning done with Python.

The school will be more profitable if you can run yourself the code during the hands-on session. The three hands-on sessions will be run from python notebooks on GitHub.

There are (at least) two ways to run these notebooks:

  • on Google Colab (preferably use Chrome browser): this is recommended if you're just starting with Machine Learning, as this runs out of the box;
  • on your laptop with an Anaconda installation: this allows to run locally on an environment you control completely but it might have rough edges. But it is more scalable than Google Colab, so this school is a good opportunity to do it.

Please note that the User Interface for notebook on Colab and notebook on Jupyter/Anaconda is similar but not exactly the same.

In order not to lose any time during the hands-on session, please follow the instruction below.

 

Google Colab

Google Colab or Colaboratory is a cloud service, offered by Google, based on Jupyter Notebooks and intended for training and research in machine learning. This platform allows you to train Machine Learning models directly in the cloud. This means that you do not need to install anything on your computer except a browser. It allows you to write and execute Python code in your web browser. Note that for a better experience, it is preferable to run the Chrome browser for working with Colab.

What is a Jupyter Notebook?

Jupyter Notebook is an Open Source web application for creating and sharing documents containing code (executable directly in the document), equations, images and text. With this application it is possible to do data processing, statistical modelling, data visualization, Machine Learning, etc..

How to access it?

You need to use a Google account. If you don’t have one already, please register and create one. You will have access to a Google drive with a 15 Gb storage space and to Google Colab. For this purpose go to: https://accounts.google.com/

Once done, have a look at the following page: https://colab.research.google.com/

Read the introduction to get an idea of what Colab is all about. You can watch the video proposed in this page (Colab presentation)

You are almost ready for the practice session.

The last step is to import a Python notebook (a ".ipynb" file) from GitHub into Colab and save it into your own Google Drive. For this purpose, click on the following link:

SOS2021_Welcome_To_Colaboratory.ipynb

Read the instructions contained in this notebook. Once done you are ready for the practice sessions with Google Colab. Congratulations! You can for sure continue to practice around with Colab to get familiar with it and explore its abilities.

We can't wait to start reviewing some statistics and have fun together!

 

Anaconda 

We recommend that participants join with their laptop already properly configured, so that no time is lost in the session:

  • with a Terminal emulator 
  • with anaconda installation (see below)

Anaconda installation

We recommend to install anaconda3 https://www.anaconda.com/download which includes the most common Machine Learning software suite (like sci-kit learn, matplotlib). Linux, Mac and Windows are supported. Either Graphical or Command Line installer works. If you have an old Anaconda installation you've not used since a long time, better install the new one (in particular, only python 3 is now supported).

To test it:

  • open the notebook

Two techniques to do this :

  • easiest:

    • start the application Anaconda-Navigator,

    • select Jupyter Notebook,

    • navigate to sos2021

    • click on SOS2021_Welcome_To_Colaboratory.ipynb

  • recommended :

    • open a terminal

    • cd to sos2021

    • start the notebook by typing : jupyter notebook

    • if jupyter is not known, make sure anaconda3 installation is in your PATH with something like : export PATH="/Users/rousseau/anaconda3/bin:$PATH"

    • click on SOS2021_Welcome_To_Colaboratory.ipynb in the tab that opened in you browser

Execute the notebook. For the very basics of Jupyter notebook interactivity, please check this short video

  • Recommended method
    • click on first cell (the title!)

    • execute each cell by typing Shift-return repetitively. For non trivial cells with code, you'll see it takes a bit more time to recompute the output

    • change the content of the first cell (with seconds_in_a_day), and reexecute it

    • for the third cell with code (starting with import numpy),

      • you'll notice you don't see the figure.

      • add at the beginning : %matplotlib inline  

      • re-run you should see the figure

 

 

For trouble-shoutings of the hands on session, please use the hands-on-setup channel on Discord (instruction to join the Discord server for the school have been sent to registered participants).