Skip to content

insanebaba/DeepLearningMaster2019

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About screen

DeepLearningMaster Repository

This repository contains notebooks used in DEEP LEARNING COURSE of the MASTER IN FUNDAMENTAL PRINCIPLES OF DATA SCIENCE of the Universitat de Barcelona.

Course Description

Deep learning is one of the fastest growing areas of machine learning and a hot topic in both academia and industry. This course will cover the basics of deep learning by using a hands-on approach.

Course Instructor

Jordi Vitrià

Class Time and Location

  • 2ond Semester (February - May, 2019)
  • Lecture: Tuesday 15:00h-17:00h
  • Location: Aula B1, Facultat de Matemàtiques i Informàtica, Universitat de Barcelona. Map.

Prerequisites

  • Proficiency in Python (3.6): All class assignments will be in Python (using tensorflow and keras).
  • Calculus, Linear Algebra, Optimization: You should be comfortable taking derivatives and understanding matrix vector operations and notation.
  • Basic Probability and Statistics.
  • Machine Learning.

If you are not used to Git, you can complete this free online git course

Grading

  • Assignment #1: 30%. Submission deadline (UB Campus Virtual): April Xth, 2019.
  • Assignment #2: 30%. Submission deadline (UB Campus Virtual): May Xth, 2019.
  • Assignment #3: 40%. Submission deadline (UB Campus Virtual): June Xth, 2019

Study groups are allowed but we expect students to understand and complete their own assignments and to hand in one assignment per student.

Course Agenda

  1. Introduction to Deep Learning and its applications. Using the Jupyter notebook & Docker. Software stack.
  2. Basic concepts: learning from data.
  3. Automated differentiation & Backpropagation, Training a Neural Network from Scratch.
  4. Tensorflow programming model. Dense Neural Networks.
  5. Keras.
  6. Recurrent Neural Netwoks I.
  7. Recurrent Neural Netwoks II.
  8. Embeddings.
  9. Convolutional Neural Networks I.
  10. Convolutional Neural Networks for Large Scale Learning.
  11. Unsupervised Learning I.
  12. Unsupervised Learning II.
  13. Deep Reinforcement Learning.

Course Software Installation

The best way to run the course software is to use a Docker container.

A gentle introduction to docker: How Docker Can Help You Become A More Effective Data Scientist

There’s full documentation on installing Docker at docker.com, but in a few words, the steps are:

  • Go to docs.docker.com in your browser.
  • Step one of the instructions sends you to download Docker.
  • Run that downloaded file to install Docker.
  • At the end of the install process a whale in the top status bar indicates that Docker is running, and accessible from a terminal.
  • Click the whale to get Preferences, and other options.
  • Open a command-line terminal, and run some Docker commands to verify that Docker is working as expected. Some good commands to try are docker version to check that you have the latest release installed, and docker ps and docker run hello-world to verify that Docker is running.
  • By default, Docker is set to use 2 processors. You can increase processing power for the app by setting this to a higher number in Preferences, or lower it to use fewer computing resources.
  • Memory - By default, Docker is set to use 2 GB runtime memory, allocated from the total available memory on your computer. You can increase the RAM on the app to get faster performance by setting this number higher (for example to 3) or lower (to 1) if you want Docker to use less memory.

Once Docker is installed, you can download the image of this course and download this git repository:

  • In a terminal, go to your course folder and run (This operation requires a good internet connection; it will take some minutes): docker pull datascienceub/deepub
  • MacOS & Linux: Run the deepub image on your system: docker run -it -p 8888:8888 -p 6006:6006 -v /$(pwd):/notebooks datascienceub/deepub
  • Windows: Run the deepub image on your system: docker run -it -p 8888:8888 -p 6006:6006 -v C:/your_course_folder_path:/notebooks datascienceub/deepub
  • Once these steps have been done, you can check the installation by starting your web browser and introducing the referred URL.
  • Finally, to have the contents of this repository in your computer, open terminal from your browser and execute this instruction: git clone https://github.com/DataScienceUB/DeepLearningMaster2019.

To run this image:

  • Windows: In a terminal, go to your course folder and run the deepub image on your system: docker run -it -p 8888:8888 -p 6006:6006 -v C:/your_course_folder_path:/notebooks datascienceub/deepub.
  • MacOS & Linux: In a terminal, go to your course folder and run the deepub image on your system: docker run -it -p 8888:8888 -p 6006:6006 -v /$(pwd):/notebooks datascienceub/deepub
  • Start your web browser and introduce the corresponding URL.

Next times, if there are new contents in the repository, you can bring your local copy of the repository up to date:

  • Open a new Jupyter notebook and execute this instruction in a code cell: !git pull https://github.com/DataScienceUB/DeepLearningMaster2019

Course Software Installation

You can develop deep learning applications with Google Colaboratory (Colab) -on the free Tesla K80 GPU- using Keras and Tensorflow. Colab is a Google internal research tool for data science. They have released the tool sometime earlier to the general public with a goal of dissemination of machine learning education and research.

You can find more information in this blogs:

About

MASTER IN FOUNDATIONS OF DATA SCIENCE: Deep Learning.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%