Difference between revisions of "Machine Learning Bio"

From Chrome
Jump to: navigation, search
(Teacher Slides)
(Teacher Slides)
Line 234: Line 234:
 
In the following you can find the lecture slides used by the teacher and the teaching assistants during classes.
 
In the following you can find the lecture slides used by the teacher and the teaching assistants during classes.
  
Lectures:
 
 
* [[Media:ML-2020-A0-LinearAlgebraBasics.pdf | [2020/2021] Linear Algebra Basics]]: Basic elements of linear algebra, e.g., vectors, matrices, basis, span, etc.
 
* [[Media:ML-2020-A0-LinearAlgebraBasics.pdf | [2020/2021] Linear Algebra Basics]]: Basic elements of linear algebra, e.g., vectors, matrices, basis, span, etc.
 
* [[Media:ML-2021-00-Intro.pdf | [2020/2021] Course introduction]]: introductory slides of the course with useful information about the grading, and the course logistics. Some examples from supervised and unsupervised learning. Regression, classification, clustering terminology and examples.
 
* [[Media:ML-2021-00-Intro.pdf | [2020/2021] Course introduction]]: introductory slides of the course with useful information about the grading, and the course logistics. Some examples from supervised and unsupervised learning. Regression, classification, clustering terminology and examples.
Line 243: Line 242:
 
* [[Media:ML-2020-05-PrincipalComponentAnalysis.pdf | [2019/2020] Principal Component Analysis]]: Principal Component Analysis, Geometric Interpretation, Singular Values Decomposition.
 
* [[Media:ML-2020-05-PrincipalComponentAnalysis.pdf | [2019/2020] Principal Component Analysis]]: Principal Component Analysis, Geometric Interpretation, Singular Values Decomposition.
  
Laboratories:
+
===Laboratories===
 +
 
 +
 
 
*[[Media:ML2021-lab01.zip | [2020/2021] Material for the first lab session]]: some useful jupiter notebooks which will be used during the first lab session ([[Media:ML2021-lab01_solutions.zip |complete version]])
 
*[[Media:ML2021-lab01.zip | [2020/2021] Material for the first lab session]]: some useful jupiter notebooks which will be used during the first lab session ([[Media:ML2021-lab01_solutions.zip |complete version]])
 
*[[Media:ML2021-lab02.zip | [2020/2021] Material for the second lab session]]: some useful jupiter notebooks which will be used during the second lab session ([[Media:ML2021-lab02_solutions.zip |complete version]])
 
*[[Media:ML2021-lab02.zip | [2020/2021] Material for the second lab session]]: some useful jupiter notebooks which will be used during the second lab session ([[Media:ML2021-lab02_solutions.zip |complete version]])

Revision as of 13:27, 17 March 2021


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

* 17/03/2021: Added the material for the lab of today ... 
* 10/03/2021: 11/03/2021 lecture has been canceled
* 06/03/2021: website update with linear algebra slides and (working) links to all lectures
* 05/03/2021: Since today we are moved fully online so lectures will happen in my webex room (same holds for labs)
* 24/02/2021: Lectures start today


Course Aim & Organization

The objective of the Machine Learning course is to give an in-depth presentation of the techniques most used for pattern recognition, knowledge discovery, and data analysis/modeling. These techniques are presented both from a theoretical (i.e., statistics and information theory) perspective and a practical one (i.e., coding examples) through the descriptions of algorithms and their implementations in a general-purpose programming language (i.e., python).

The course presents the classical supervised and unsupervised learning paradigms described and discussed presenting regression, classification, and clustering problems in Bioinformatics. The course is composed of a set of lectures on specific machine learning techniques (e.g., generalized linear regression, logistic regression, linear and quadratic discriminant analysis, support vector machines, k-nearest-neighborhood, clustering, etc.) preceded by the introduction of the Statistical Learning framework which acts as a common reference framework for the entire course.

Teachers

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

Course Program

The course mostly follows the following book which is also available for download in pdf

The course lectures will present the theory and practice of the following:

  • Machine Learning and Pattern Classification: the general concepts of Machine Learning and Pattern Recognition are introduced within the framework of Statistical Decision Theory with reference to the bias-variance trade-off and the Bayes classifier;
  • Generalized Linear Regression: linear methods for regression will be presented and discussed introducing different techniques (e.g., Linear Regression, Ridge Regression, K-Nearest Neighbors Regression, Non-Linear Regression, etc.) and the most common methodologies for model validation and selection (e.g., AIC, BIC, cross-validation, stepwise feature selection, Lasso, etc.).
  • Linear and Non-Linear Classification: generative and discriminative techniques for classification will be described and discussed (e.g., Logistic Regression, Linear and Quadratic Discriminant Analysis, K-Nearest Neighbors, Perceptron Rule, and Support Vector Machines, etc.). Metrics for classifiers evaluation and comparison are presented in this part of the course (e.g., accuracy, precision, recall, ROC, AUC, F-measure, Matthew coefficient).
  • Unsupervised Learning: the most common approaches to unsupervised learning are described mostly focusing on clustering methods such as hierarchical clustering, k-means, k-medoids, Mixture of Gaussians, DBSCAN, etc

These topics will be presented both from a theoretical perspective and a practical one via implementations in the general-purpose programming language python.

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 room B.6.1, starts at 14:15 (cum tempore), ends at 18:15 (but more likely at 17:15)
* On Thursday, in room B.6.1, starts at 08:15 (cum tempore), ends at 10:15
Date Day Time Room Teacher Type Topic
24/02/2021 Wednesday 15:15-18:15 B.6.1 Matteo Matteucci Lecture Course Intro + Machine Learning Intro
25/02/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture Statistical Learning Theory (Ch. 1 ISL)
03/03/2021 Wednesday 14:15-18:15 B.6.1 Matteo Matteucci Lecture Statistical Learning Theory - Bias/Variance Trade-off (Ch. 2 ISL)
04/03/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture Introduction to Linear Algebra
10/03/2021 Wednesday 14:15-18:15 Matteucci webex room Matteo Matteucci Lecture Simple Linear Regression (Ch. 2 ISL + Ch. 3 ISL)
11/03/2021 Thursday --- --- --- --- --- No lecture ---
17/03/2021 Wednesday 14:15-18:15 Cannici webex room Marco Cannici Python Laboratory Python + Numpy + Bias/Variance
18/03/2021 Thursday 08:15-10:15 Matteucci webex room Matteo Matteucci Lecture Multi Variate Linear Regression (Ch. 2 ISL + Ch. 3 ISL)
24/03/2021 Wednesday 14:15-18:15 Cannici webex room Marco Cannici Python Laboratory Multivariate Linear Regression Laboratory
25/03/2021 Thursday 08:15-10:15 Matteucci webex room Matteo Matteucci Lecture Generalized Linear Regression (Ch. 2 ISL + Ch. 3 ISL)
31/03/2021 Wednesday 14:15-18:15 Matteucci webex room Matteo Matteucci Lecture Feature Selection (Ch. 3 + Ch. 6 ISL)
01/04/2021 Thursday 08:15-10:15 Matteucci webex room Matteo Matteucci Lecture Lasso (Ch. 3 + Ch. 6 ISL)
07/04/2021 Wednesday 14:15-18:15 B.6.1 Marco Cannici Python Laboratory Generalized Linear Regression and Feature Selection Laboratory
08/04/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture Classification: KNN and Logistic Regression (Ch. 4 ISL + Ch. 4 ESL)
14/04/2021 Wednesday 15:15-18:15 B.6.1 Matteo Matteucci Lecture Classification: Logistic Regression (Ch. 4 ISL + Ch. 4 ESL)
15/04/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture Classification: Linear Discriminanr Analysis (Ch. 4 ISL)
22/04/2021 Wednesday --- --- --- --- --- No Lecture ---
23/04/2021 Thursday --- --- --- --- --- No Lecture ---
28/04/2021 Wednesday --- --- --- --- --- No Lecture ---
29/04/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture Evaluation methods for classification
05/05/2021 Wednesday 14:15-18:15 B.6.1 Marco Cannici Python Laboratory Logistic Regression and LDA Laboratory
06/05/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture The Perceptron (Ch. 4 ESL, Ch. 9 ISL, Ch. 12 ESL)
12/05/2021 Wednesday 14:15-18:15 B.6.1 Matteo Matteucci Lecture Support Vector Machines (Ch. 4 ESL, Ch. 9 ISL, Ch. 12 ESL)
13/05/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture Unsupervised Learning and Clustering (Ch. 10 ISL)
19/05/2021 Wednesday 14:15-18:15 B.6.1 Marco Cannici Python Laboratory SVM and Classifiers Evaluation Laboratory
20/05/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture Clustering (Ch. 10 ISL)
26/05/2021 Wednesday 14:15-18:15 B.6.1 Marco Cannici Python Laboratory Clustering Laboratory
27/05/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture Clustering Evaluation (Ch. 10 ISL)
02/06/2021 Wednesday --- --- --- --- --- No Lecture ---
03/06/2021 Thursday 08:15-10:15 B.6.1 Matteo Matteucci Lecture Principal Component Analysis (Ch. 10 ISL)

Chapters are intended as complete except for

  • Ch.4 ESL: Section 4.5
  • Ch.12 ESL: Sections 12.1, 12.2, 12.3
  • Ch.9 ISL: Sections 9.1, 9.2, 9.3

Course Evaluation

The course evaluation is composed by two parts:

  • HW: Homework with exercises covering the whole program (up to 6 points)
  • WE: A written examination covering the whole program (up to 26 points)

the final score will be the sum of HW (not compulsory) and WE scores.

Due to the COVID-19 situation the written exam for the 2019/2020 edition has been turned into an oral examination:

  • You will get the oral grade as a mark in the scale of 30 up to 32/30 which you have to multiply by 0.8125 and then you add to it the score of the project. For your convenience here it is a conversion table with the final mark in case you do not turn in the project or you get the whole 6 marks in the project.

Teaching Material (the textbook)

Lectures will be based on material taken from the book.

If you are interested in a more deep treatment of the topics you can refer to the following book from the same authors

Some additional material that could be used to prepare the oral examination will be provided together with the past homeworks.

Teacher Slides

In the following you can find the lecture slides used by the teacher and the teaching assistants during classes.

  • [2020/2021] Linear Algebra Basics: Basic elements of linear algebra, e.g., vectors, matrices, basis, span, etc.
  • [2020/2021] Course introduction: introductory slides of the course with useful information about the grading, and the course logistics. Some examples from supervised and unsupervised learning. Regression, classification, clustering terminology and examples.
  • [2020/2021] Statistical Learning Introduction: Statistical Learning definition, rationale, and trade-offs (e.g., prediction vs. inference, parametric vs non parametric models, flexibility vs. interpretability, etc.)
  • [2019/2020] Linear Regression: Simple Linear Regression and Multiple Linear Regression. Generalized Linear models. Cross-validation techniques. Feature selection. Ridge Regression and Lasso.
  • [2019/2020] Linear Classification: From Linear Regression to Logistic Regression. Linear Discriminant Analysis and Quadratic Discriminant Analysis. Comparison between linear classification methods. Discriminative vs. generative methods. Support Vector Machines.
  • [2019/2020] Clustering: Introduction to unsupervised learning and clustering, hierarchical clustering, k-means, DBSCNA, indexes for clustering evaluation.
  • [2019/2020] Principal Component Analysis: Principal Component Analysis, Geometric Interpretation, Singular Values Decomposition.

Laboratories

Additional Resources

Papers and links useful to integrate the textbook

  • Basic Linear Algebra: "Basic Linear Algebra" chapter from Wayne Winston book "Operations Research Applications and Algorithms (4th ed.)"
  • Bias vs. Variance: "Understanding the Bias-Variance Tradeoff" essay by Scott Fortmann-Roe
  • Karush Kuhn Tucker Conditions: a short note on their meaning with references to relevant wikipedia pages
  • Seeing Theory: a website where the basic concepts of probability and statistics are explained in a visual way.

Online Resources

The following are links to online sources which might be useful to complement the material above

  • Statistical Learning MOOC covering the entire ISL book offered by Trevor Hastie and Rob Tibshirani. Start anytime in self-paced mode.
  • MATH 574M University of Arizona Course on Statistical Machine Learning and Data Mining; here you can find slides covering part of the course topics (the reference book for this course is again The Elements of Statistical Learning)