Jeff Howbert Introduction to Machine Learning Winter 2012 1 Regression Linear Regression.

Slides:



Advertisements
Similar presentations
The Software Infrastructure for Electronic Commerce Databases and Data Mining Lecture 4: An Introduction To Data Mining (II) Johannes Gehrke
Advertisements

Machine Learning Math Essentials Part 2
Chapter Outline 3.1 Introduction
Brief introduction on Logistic Regression
Regularization David Kauchak CS 451 – Fall 2013.
Classification / Regression Support Vector Machines
Pattern Recognition and Machine Learning
Pattern Recognition and Machine Learning
R OBERTO B ATTITI, M AURO B RUNATO. The LION Way: Machine Learning plus Intelligent Optimization. LIONlab, University of Trento, Italy, Feb 2014.
6-1 Introduction To Empirical Models 6-1 Introduction To Empirical Models.
Chapter 10 Curve Fitting and Regression Analysis
Model Assessment and Selection
Classification and Prediction: Regression Via Gradient Descent Optimization Bamshad Mobasher DePaul University.
x – independent variable (input)
Linear Regression Models Based on Chapter 3 of Hastie, Tibshirani and Friedman Slides by David Madigan.
Machine Learning CUNY Graduate Center Lecture 3: Linear Regression.
Kernel Methods and SVM’s. Predictive Modeling Goal: learn a mapping: y = f(x;  ) Need: 1. A model structure 2. A score function 3. An optimization strategy.
Classification and Prediction: Regression Analysis
CSCI 347 / CS 4206: Data Mining Module 04: Algorithms Topic 06: Regression.
Collaborative Filtering Matrix Factorization Approach
Machine Learning CUNY Graduate Center Lecture 3: Linear Regression.
Perceptual and Sensory Augmented Computing Machine Learning, WS 13/14 Machine Learning – Lecture 14 Introduction to Regression Bastian Leibe.
Classification and Prediction (cont.) Pertemuan 10 Matakuliah: M0614 / Data Mining & OLAP Tahun : Feb
Outline 1-D regression Least-squares Regression Non-iterative Least-squares Regression Basis Functions Overfitting Validation 2.
Classification / Regression Neural Networks 2
1 SUPPORT VECTOR MACHINES İsmail GÜNEŞ. 2 What is SVM? A new generation learning system. A new generation learning system. Based on recent advances in.
MECN 3500 Inter - Bayamon Lecture 9 Numerical Methods for Engineering MECN 3500 Professor: Dr. Omar E. Meza Castillo
Overview of Supervised Learning Overview of Supervised Learning2 Outline Linear Regression and Nearest Neighbors method Statistical Decision.
Data Mining Practical Machine Learning Tools and Techniques Chapter 4: Algorithms: The Basic Methods Section 4.6: Linear Models Rodney Nielsen Many of.
Jeff Howbert Introduction to Machine Learning Winter Regression Linear Regression Regression Trees.
CpSc 881: Machine Learning
Chapter1: Introduction Chapter2: Overview of Supervised Learning
Over-fitting and Regularization Chapter 4 textbook Lectures 11 and 12 on amlbook.com.
Math 4030 – 11b Method of Least Squares. Model: Dependent (response) Variable Independent (control) Variable Random Error Objectives: Find (estimated)
Data analysis tools Subrata Mitra and Jason Rahman.
Data Mining: Concepts and Techniques1 Prediction Prediction vs. classification Classification predicts categorical class label Prediction predicts continuous-valued.
ECE 5984: Introduction to Machine Learning Dhruv Batra Virginia Tech Topics: –(Finish) Model selection –Error decomposition –Bias-Variance Tradeoff –Classification:
PATTERN RECOGNITION AND MACHINE LEARNING CHAPTER 1: INTRODUCTION.
Combining Models Foundations of Algorithms and Machine Learning (CS60020), IIT KGP, 2017: Indrajit Bhattacharya.
Data Transformation: Normalization
Chapter 7. Classification and Prediction
Deep Feedforward Networks
Probability Theory and Parameter Estimation I
Machine Learning Logistic Regression
Boosting and Additive Trees (2)
CSE 4705 Artificial Intelligence
CH 5: Multivariate Methods
Linear Regression (continued)
The Elements of Statistical Learning
Announcements HW4 due today (11:59pm) HW5 out today (due 11/17 11:59pm)
ECE 5424: Introduction to Machine Learning
Roberto Battiti, Mauro Brunato
Machine Learning Logistic Regression
Classification Discriminant Analysis
Classification Discriminant Analysis
Hyperparameters, bias-variance tradeoff, validation
Collaborative Filtering Matrix Factorization Approach
Linear regression Fitting a straight line to observations.
What is Regression Analysis?
Machine Learning Math Essentials Part 2
Biointelligence Laboratory, Seoul National University
Contact: Machine Learning – (Linear) Regression Wilson Mckerrow (Fenyo lab postdoc) Contact:
Nonlinear Fitting.
Support Vector Machine I
Basis Expansions and Generalized Additive Models (1)
Multivariate Methods Berlin Chen
Multivariate Methods Berlin Chen, 2005 References:
Regression and Correlation of Data
Presentation transcript:

Jeff Howbert Introduction to Machine Learning Winter Regression Linear Regression

Jeff Howbert Introduction to Machine Learning Winter slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Jeff Howbert Introduction to Machine Learning Winter slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Jeff Howbert Introduction to Machine Learning Winter slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Jeff Howbert Introduction to Machine Learning Winter slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Jeff Howbert Introduction to Machine Learning Winter slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Jeff Howbert Introduction to Machine Learning Winter l Suppose target labels come from set Y –Binary classification:Y = { 0, 1 } –Regression:Y =  (real numbers) l A loss function maps decisions to costs: – defines the penalty for predicting when the true value is. l Standard choice for classification: 0/1 loss (same as misclassification error) l Standard choice for regression: squared loss Loss function

Jeff Howbert Introduction to Machine Learning Winter l Most popular estimation method is least squares: –Determine linear coefficients ,  that minimize sum of squared loss (SSL). –Use standard (multivariate) differential calculus:  differentiate SSL with respect to ,   find zeros of each partial differential equation  solve for ,  l One dimension: Least squares linear fit to data

Jeff Howbert Introduction to Machine Learning Winter l Multiple dimensions –To simplify notation and derivation, change  to  0, and add a new feature x 0 = 1 to feature vector x: –Calculate SSL and determine  : Least squares linear fit to data

Jeff Howbert Introduction to Machine Learning Winter Least squares linear fit to data

Jeff Howbert Introduction to Machine Learning Winter Least squares linear fit to data

Jeff Howbert Introduction to Machine Learning Winter l The inputs X for linear regression can be: –Original quantitative inputs –Transformation of quantitative inputs, e.g. log, exp, square root, square, etc. –Polynomial transformation  example: y =  0 +  1  x +  2  x 2 +  3  x 3 –Basis expansions –Dummy coding of categorical inputs –Interactions between variables  example: x 3 = x 1  x 2 l This allows use of linear regression techniques to fit much more complicated non-linear datasets. Extending application of linear regression

Jeff Howbert Introduction to Machine Learning Winter Example of fitting polynomial curve with linear model

Jeff Howbert Introduction to Machine Learning Winter l 97 samples, partitioned into: –67 training samples –30 test samples l Eight predictors (features): –6 continuous (4 log transforms) –1 binary –1 ordinal l Continuous outcome variable: – lpsa : log( prostate specific antigen level ) Prostate cancer dataset

Jeff Howbert Introduction to Machine Learning Winter Correlations of predictors in prostate cancer dataset

Jeff Howbert Introduction to Machine Learning Winter Fit of linear model to prostate cancer dataset

Jeff Howbert Introduction to Machine Learning Winter l Complex models (lots of parameters) often prone to overfitting. l Overfitting can be reduced by imposing a constraint on the overall magnitude of the parameters. l Two common types of regularization in linear regression: –L 2 regularization (a.k.a. ridge regression). Find  which minimizes:  is the regularization parameter: bigger imposes more constraint –L 1 regularization (a.k.a. lasso). Find  which minimizes: Regularization

Jeff Howbert Introduction to Machine Learning Winter Example of L 2 regularization L2 regularization shrinks coefficients towards (but not to) zero, and towards each other.

Jeff Howbert Introduction to Machine Learning Winter Example of L 1 regularization L1 regularization shrinks coefficients to zero at different rates; different values of give models with different subsets of features.

Jeff Howbert Introduction to Machine Learning Winter Example of subset selection

Jeff Howbert Introduction to Machine Learning Winter Comparison of various selection and shrinkage methods

Jeff Howbert Introduction to Machine Learning Winter L 1 regularization gives sparse models, L 2 does not

Jeff Howbert Introduction to Machine Learning Winter l In addition to linear regression, there are: –many types of non-linear regression  decision trees  nearest neighbor  neural networks  support vector machines –locally linear regression –etc. Other types of regression

Jeff Howbert Introduction to Machine Learning Winter MATLAB interlude matlab_demo_07.m Part B