Difference between revisions of "Artificial Neural Networks and Deep Learning"

From Chrome
Jump to: navigation, search
(External Sources)
(Course Slides)
Line 383: Line 383:
  
 
Slides from the lectures by Matteo Matteucci
 
Slides from the lectures by Matteo Matteucci
*[[Media:AN2DL_00_2121_Course_Introduction.pdf|[2021/2022] Course Introduction]]: introductory slides of the course with useful information about the course syllabus, grading, and the course logistics.  
+
*[[Media:AN2DL_00_2223_Course_Introduction.pdf|[2022/2023] Course Introduction]]: introductory slides of the course with useful information about the course syllabus, grading, and the course logistics.  
*[[Media:AN2DL_01_2122_Deep_Learning_Intro.pdf|[2021/2022] Machine Learning vs Deep Learning]]: introduction to machine learning paradigms and definition of deep learning with examples
+
*[[Media:AN2DL_01_2223_Deep_Learning_Intro.pdf|[2022/2023] Machine Learning vs Deep Learning]]: introduction to machine learning paradigms and definition of deep learning with examples
 
*[[Media:AN2DL_02_2122_Perceptron_2_FeedForward.pdf|[2021/2022] From Perceptrons to Feed Forward Neural Networks]]: the original Perceptron model, Hebbian learning, feed-forward architecture, backpropagation and gradient descent, error functions and maximum likelihood estimation   
 
*[[Media:AN2DL_02_2122_Perceptron_2_FeedForward.pdf|[2021/2022] From Perceptrons to Feed Forward Neural Networks]]: the original Perceptron model, Hebbian learning, feed-forward architecture, backpropagation and gradient descent, error functions and maximum likelihood estimation   
 
*[[Media:AN2DL_03_2122_NeuralNetwroksTraining.pdf|[2021/2022] Neural Networks Training]]: dealing with overfitting (weight decay, early stopping, dropout), vanishing gradient (ReLU and friends), batch normalization  
 
*[[Media:AN2DL_03_2122_NeuralNetwroksTraining.pdf|[2021/2022] Neural Networks Training]]: dealing with overfitting (weight decay, early stopping, dropout), vanishing gradient (ReLU and friends), batch normalization  

Revision as of 21:26, 13 September 2022


The following are last-minute news you should be aware of ;-)

07/08/2022: Grades for the 06/07/2022 call are available here!
06/03/2021: Grades for the 2021/2021 homeworks are available here!
24/11/2021: Lecture on 09/12/2021 moved to 16/12/2021
24/11/2021: Change of classroom on the 15/12 from T2.1 to B4.3
12/11/2021: Here is the link to the First Homework!!! (read the registration rules, they have been updated)
12/11/2021: First homework is coming out! Register to submit your solutions!
07/11/2021: We have restructured the notebooks from the labs, please check the new organization and material
13/10/2021: Final grade for 2020/2021 year are here
30/09/2021: Video and slides updated + notebooks published
24/09/2021: Removed last year practicals, this year they will be different!!! Python crash course moved at the end of the material
22/09/2021: Added colab crash course on Python 3 in the material session
18/09/2021: We skip exercising on 22/09 and added exercising on 15/12 I updated the schedule!
16/09/2021: Updated material on the first lectures + added reference to python tutorials in the material section
15/09/2021: Lectures start today!
14/09/2021: Website under maintenance ... come back later


Course Aim & Organization

Neural networks are mature, flexible, and powerful non-linear data-driven models that have successfully been applied to solve complex tasks in science and engineering. The advent of the deep learning paradigm, i.e., the use of (neural) network to simultaneously learn an optimal data representation and the corresponding model, has further boosted neural networks and the data-driven paradigm.

Nowadays, deep neural networks can outperform traditional hand-crafted algorithms, achieving human performance in solving many complex tasks, such as natural language processing, text modeling, gene expression modeling, and image recognition. The course provides a broad introduction to neural networks (NN), starting from the traditional feedforward (FFNN) and recurrent (RNN) neural networks, till the most successful deep-learning models such as convolutional neural networks (CNN) and long short-term memories (LSTM).

The course's major goal is to provide students with the theoretical background and the practical skills to understand and use NN, and at the same time become familiar and with Deep Learning for solving complex engineering problems.

Teachers

The course is composed of a blending of lectures and exercises by the course teachers and a teaching assistant.

Course Program and Syllabus

This goal is pursued in the course by:

  • Presenting major theoretical results underpinning NN (e.g., universal approx, vanishing/exploding gradient, etc.)
  • Describing the most important algorithms for NN training (e.g., backpropagation, adaptive gradient algorithms, etc.)
  • Illustrating the best practices on how to successfully train and use these models (e.g., dropout, data augmentation, etc.)
  • Providing an overview of the most successful Deep Learning architectures (e.g., CNNs, sparse and dense autoencoder, LSTMs for sequence to sequence learning, etc.)
  • Providing an overview of the most successful applications with particular emphasis on models for solving visual recognition tasks.

We have compiled a detailed syllabus of the course that students can use to double-check their preparation before the exam.

  • [2020/2021] Course Syllabus: a detailed list of topics covered by the course and which students are expected to know when approaching the exam

Detailed course schedule

A detailed schedule of the course can be found here; topics are just indicative while days and teachers are correct up to some last-minute change (I will notify you by email). Please note that not all days we have lectures!!

Note: Lecture timetable interpretation
* On Wednesday, in 9.0.1, starts at 16:30, ends at 18:00 
* On Thursday, in 20.S.1, starts at 14:30, ends at 16:00

Lectures will be recorded and shared afterward, no streaming of lectures is foreseen.

For a course google calendar you might look here!

Course Evaluation

Course evaluation is composed of two parts:

  • A written examination covering the whole program graded up to 20/30
  • 2 home projects in the form of a "Kaggle style" challenge practicing the topics of the course graded up to 5/30 each

The final score will sum up the grade of the written exam and the grade of the home projects. Home projects are not compulsory and they are issued only once a year.

Teaching Material (the textbook)

Lectures will be based on material from different sources, teachers will provide their slides to students as soon they are available. As a general reference, you can check the following textbook, but keep in mind that teachers will not follow it strictly

  • Deep Learning. Ian Goodfellow, Yoshua Bengio, and Aaron Courville, MIT Press, 2016.

Regarding the Python programming language, we will provide you with the basics about NumPy and python scripting in case you want some introductory material you can check here

  • Python tutorials: these are the official python tutorials, we suggest 3.An Informal Introduction to Python (Numbers, Strings, Lists), 4.More Control Flow Tools (if, for, range, functions), 5.Data Structures (More on lists, Dictionaries), 9.Classes.

Course Slides

Slides from the lectures by Matteo Matteucci

Slides from the lectures by Giacomo Boracchi are available in his webpage; for your convenience, I am giving pointers to the slide here for you (in case you note discrepancies please notify me)

  • [2021/2022 The Image Classification Problem]
  • [2021/2022 Convolutional Neural Networks]
  • [2021/2022 CNN Parameters and Training with Data Scarcity]
  • [2021/2022 Fully Convolutional CNN and CNN for Semantic Segmentation]
  • [2021/2022 CNN for Localization, CNN Explanations and Famous Architectures]
  • [2021/2022 Autoencoders and Generative Adversarial Networks]
  • [2021/2022 Object Detction Networks and Metric Learning]

Slides from the practicals by Francesco Lattari and Eugenio Lomurno will be published here after each lab session:

External Sources

Exams

Politecnico di Milano exams will be held digitally in presence via the Politecnico di Milano remote exam platform using the Safe Exams Browser, it works only on Windows and iOS so please be prepared and test it in advance. You can have a flavor of what to expect by looking at some past exam calls.

Note: written exams will be graded 20 points plus 10 points are given by 2 software challenges issues only during the semester. Laude will be given to students who, beside getting the highest grade, will show participation in class, will perform particularly well in the challenges (this includes the quality of the report), will submit ahead of time the written exams.