Machine Learning Basics

Similar documents
Lecture 1: Machine Learning Basics

Python Machine Learning

(Sub)Gradient Descent

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

CS Machine Learning

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition

Assignment 1: Predicting Amazon Review Ratings

CSL465/603 - Machine Learning

Learning From the Past with Experiment Databases

Generative models and adversarial training

OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler

Analysis of Emotion Recognition System through Speech Signal Using KNN & GMM Classifier

Evaluating Interactive Visualization of Multidimensional Data Projection with Feature Transformation

arxiv: v2 [cs.cv] 30 Mar 2017

Semi-Supervised Face Detection

Comparison of network inference packages and methods for multiple networks inference

A survey of multi-view machine learning

Model Ensemble for Click Prediction in Bing Search Ads

Word Segmentation of Off-line Handwritten Documents

Unsupervised Learning of Word Semantic Embedding using the Deep Structured Semantic Model

Probabilistic Latent Semantic Analysis

Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models

Human Emotion Recognition From Speech

System Implementation for SemEval-2017 Task 4 Subtask A Based on Interpolated Deep Neural Networks

A study of speaker adaptation for DNN-based speech synthesis

Switchboard Language Model Improvement with Conversational Data from Gigaword

OCR for Arabic using SIFT Descriptors With Online Failure Prediction

Semi-supervised methods of text processing, and an application to medical concept extraction. Yacine Jernite Text-as-Data series September 17.

Course Outline. Course Grading. Where to go for help. Academic Integrity. EE-589 Introduction to Neural Networks NN 1 EE

WHEN THERE IS A mismatch between the acoustic

Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence

Truth Inference in Crowdsourcing: Is the Problem Solved?

Australian Journal of Basic and Applied Sciences

The 9 th International Scientific Conference elearning and software for Education Bucharest, April 25-26, / X

Probability and Statistics Curriculum Pacing Guide

Using Web Searches on Important Words to Create Background Sets for LSI Classification

Why Did My Detector Do That?!

Rule Learning With Negation: Issues Regarding Effectiveness

Iterative Cross-Training: An Algorithm for Learning from Unlabeled Web Pages

The Strong Minimalist Thesis and Bounded Optimality

The Good Judgment Project: A large scale test of different methods of combining expert predictions

Learning Methods in Multilingual Speech Recognition

Active Learning. Yingyu Liang Computer Sciences 760 Fall

Rule Learning with Negation: Issues Regarding Effectiveness

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview

Artificial Neural Networks written examination

Speech Emotion Recognition Using Support Vector Machine

Class-Discriminative Weighted Distortion Measure for VQ-Based Speaker Identification

Lecture 1: Basic Concepts of Machine Learning

Introduction to Causal Inference. Problem Set 1. Required Problems

IEEE TRANSACTIONS ON AUDIO, SPEECH, AND LANGUAGE PROCESSING, VOL. 17, NO. 3, MARCH

Twitter Sentiment Classification on Sanders Data using Hybrid Approach

DOMAIN MISMATCH COMPENSATION FOR SPEAKER RECOGNITION USING A LIBRARY OF WHITENERS. Elliot Singer and Douglas Reynolds

School of Innovative Technologies and Engineering

Issues in the Mining of Heart Failure Datasets

Exploration. CS : Deep Reinforcement Learning Sergey Levine

Speech Recognition at ICSI: Broadcast News and beyond

INPE São José dos Campos

Copyright by Sung Ju Hwang 2013

Statewide Framework Document for:

Reducing Features to Improve Bug Prediction

Knowledge Transfer in Deep Convolutional Neural Nets

CS4491/CS 7265 BIG DATA ANALYTICS INTRODUCTION TO THE COURSE. Mingon Kang, PhD Computer Science, Kennesaw State University

Applications of data mining algorithms to analysis of medical data

The Evolution of Random Phenomena

Comment-based Multi-View Clustering of Web 2.0 Items

A Neural Network GUI Tested on Text-To-Phoneme Mapping

12- A whirlwind tour of statistics

Detailed course syllabus

Software Maintenance

Calibration of Confidence Measures in Speech Recognition

Attributed Social Network Embedding

STA 225: Introductory Statistics (CT)

Phonetic- and Speaker-Discriminant Features for Speaker Recognition. Research Project

Learning to Rank with Selection Bias in Personal Search

Extending Place Value with Whole Numbers to 1,000,000

Using the Attribute Hierarchy Method to Make Diagnostic Inferences about Examinees Cognitive Skills in Algebra on the SAT

Softprop: Softmax Neural Network Backpropagation Learning

On-the-Fly Customization of Automated Essay Scoring

BMBF Project ROBUKOM: Robust Communication Networks

IT Students Workshop within Strategic Partnership of Leibniz University and Peter the Great St. Petersburg Polytechnic University

Mathematics. Mathematics

Speech Segmentation Using Probabilistic Phonetic Feature Hierarchy and Support Vector Machines

have to be modeled) or isolated words. Output of the system is a grapheme-tophoneme conversion system which takes as its input the spelling of words,

Learning Optimal Dialogue Strategies: A Case Study of a Spoken Dialogue Agent for

Evolutive Neural Net Fuzzy Filtering: Basic Description

Data Fusion Through Statistical Matching

Peer Influence on Academic Achievement: Mean, Variance, and Network Effects under School Choice

A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation

ADVANCES IN DEEP NEURAL NETWORK APPROACHES TO SPEAKER RECOGNITION

Montana Content Standards for Mathematics Grade 3. Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011

Time series prediction

Quantitative analysis with statistics (and ponies) (Some slides, pony-based examples from Blase Ur)

The stages of event extraction

*Net Perceptions, Inc West 78th Street Suite 300 Minneapolis, MN

Comparison of EM and Two-Step Cluster Method for Mixed Data: An Application

Defragmenting Textual Data by Leveraging the Syntactic Structure of the English Language

Mathematics subject curriculum

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System

Transcription:

Deep Learning Theory and Applications Machine Learning Basics Kevin Moon (kevin.moon@yale.edu) Guy Wolf (guy.wolf@yale.edu) CPSC/AMTH 663

Outline 1. What is machine learning? 2. Supervised Learning Regression Complexity, overfitting, and underfitting Regularization Classification Validation techniques Anomaly detection 3. Unsupervised Learning Principal components analysis (PCA) Manifold learning Clustering

What is machine learning? xkcd.com/1838

What is machine learning? O Neil & Schutt, 2013

What is machine learning? Machine learning algorithm = algorithm that can learn from data What do we mean by learn from data? A computer program is said to learn from experience EE with respect to some class of tasks TT and performance measure PP, if its performance at tasks in TT, as measured by PP, improves with experience EE. Mitchell (1997) What are EE, TT, and PP? It depends on the problem!

The task TT Machine learning helps us to solve problems that are too difficult for fixed programs The process of learning the task TT Learning is the process of attaining the ability to perform the task Tasks are typically described in terms of how to process an example An example is a collection of measured features Often represented as a vector xx R dd of features E.g. an example includes a single image with the features comprised of the pixels in the image

Examples of the task TT Classification Output: a function ff: R dd {1,, kk} Regression Output: a function ff: R dd R Transcription Machine translation Anomaly detection Synthesis and sampling Imputation of missing values Denoising Density estimation

The performance measure PP Need a quantitative measure to evaluate a machine learning algorithm Provides a measure to guide the selection of an algorithm Examples Accuracy (or equivalently, the error rate) in a classification problem Prediction error Performance is typically estimated/evaluated based on a test set of data (different from training data) Choosing a performance measure isn t always straightforward Transcription Regression

The experience EE Most algorithms experience an entire dataset consisting of many examples or data points Example: Iris data set (Fisher, 1936) Four features: sepal length, sepal width, petal length, petal width 3 species/classes, 50 data points per class

Machine learning recap Goal is to build a program that learns from experience EE to do well at task TT as measured by performance measure PP

Supervised Learning CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Supervised learning Dataset contains features and a label or target E.g. classify iris plants into the three different species Mathematically, supervised learning observes examples of a random vector xx and an associated label yy Goal is to learn to predict yy from xx Term comes from view of the label yy coming from an instructor or teacher

Supervised learning Input data space XX Output (label) space YY Unknown function ff: XX YY Dataset DD = xx 1, yy 1, xx nn, yy nn with xx ii XX and yy ii YY Finite YY classification Continuous YY regression

Regression We have a set of nn observations xx ii, yy ii with yy ii R Goal is to learn a function that predicts label yy from sample xx Surbhi S, 2016

Regression 1. Choose a model class of functions 2. Choose a performance measure to guide the selection of a function from the model class Surbhi S, 2016 We ll begin with a simple model class: linear functions

Linear Regression We want to fit a linear function to dataset DD = xx 1, yy 1, xx nn, yy nn yy = ww xx = ww TT xx ww R dd is a vector of parameters Line if dd = 1 Plane if dd = 2 Hyperplane in general dd How do we determine ww? Based on the performance measure PP

Loss functions Labels are in YY Discrete (classification) Continuous (regression) Loss function LL: YY YY R LL maps decisions/predictions to a cost. LL( yy, yy) is the penalty for predicting yy when the true label is yy Standard choice for regression is mean squared error (MSE) LL yy, yy = yy yy 2 Absolute loss: LL yy, yy = yy yy

Empirical loss Parametric function ff(xx; ww) E.g. ff xx; ww = ww TT xx for regression The empirical loss on a dataset DD is LL ww; DD = 1 nn LL(ff(xx ii ; ww), yy ii ) ii Least squares minimizes the empirical MSE We care about predicting labels for new samples Does empirical loss minimization help with that?

Empirical vs. expected loss Assumption: sample and label pairs (xx, yy) are drawn from the unknown joint distribution p(xx, yy) Data are sampled i.i.d. Empirical loss measured on training data LL ww; DD = 1 nn ii LL(ff(xx ii ; ww), yy ii ) Goal: minimize the expected loss (aka risk) RR ww = EE LL ff xx; ww, yy

Empirical risk (loss) minimization Empirical loss LL ww; DD = 1 nn ii LL(ff(xx ii ; ww), yy ii ) Risk RR ww = EE LL ff xx; ww, yy If training set is representative of pp xx, yy, then empirical loss is a suitable proxy for the risk Essentially, we estimate pp xx, yy and RR(ww) from the empirical distribution of the data

Empirical risk minimization 1. Choose a model class H of functions ff: XX YY Regression example: linear functions parameterized by ww: ff xx; ww = ww TT xx 2. Select the function in H that minimizes the empirical risk Linear regression example: minimize empirical squared loss: ww = arg min ww How do we find ww? Use calculus nn ii=1 ww TT xx ii yy ii 2

Linear Regression Add an offset ww 0 : ff xx; ww = ww TT xx + w 0 ww = arg min ww nn ii=1 ww TT xx ii + ww 0 yy ii 2 Set ww;dd ww ii = arg min ww = 0 for each ii LL(ww; DD) Results in dd + 1 equations and dd + 1 unknowns

Linear Regression Switching to vector/matrix notation XX = data matrix with an additional column of 1 s (for the offset) yy = vector of labels Prediction: yy = XXww Resulting solution is ww = Closed form solution! XX TT XX 1 XX TT yy XX TT XX 1 XX TT is the Moore-Penrose pseudoinverse of XX

Linear Regression Example Goodfellow et al., 2016 CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Training vs Test Error Challenge of machine learning: algorithm must perform well on previously unseen inputs Not just training inputs In other words, we want the algorithm to generalize well to unseen data That is, we want the expected error rate on previously unseen inputs to be low This error rate is called the generalization error or the test error We also need to estimate the generalization error Done typically by dividing the total amount of data into two sets: training data and test data More on how this is done specifically later Model is trained on the training data and then tested on the test data Expected test error expected training error

Underfitting Many processes are not well modeled by linear functions Biological systems Stock market prices Periodic signals In these cases, linear functions can underfit the data Training error is very high Test error will also be high Goodfellow et al., 2016

Model Complexity/Capacity Solution: increase complexity of the model Model complexity is the # of independent parameters in the function model (i.e. degrees of freedom ) We can increase the complexity of our linear function by adding polynomial terms Example: dd = 1 mm ff xx; ww = ww jj xx jj jj=0 Still linear in ww we can use linear regression! Can generalize further by using other nonlinear functions of xx (e.g. log or exp)

Nonlinear Regression Goodfellow et al., 2016 CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Overfitting Overfitting occurs when the gap between training error and test error is too large The model is capturing unique characteristics of the training set The model does not generalize well to new samples Occurs when the complexity is too large Avoiding overfitting Choose model complexity based on test error Generally requires the use of another test set for evaluation

Overfitting and Underfitting Goodfellow et al., 2016 CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Penalizing Model Complexity Include a penalty on model complexity directly in the cost function: ii LL(ff(xx ii ; ww), yy ii ) + #parameters The addition of the penalty is known as regularization Regularization: any modification we make to a learning algorithm that is intended to reduce its generalization error but not its training error. (Goodfellow et al., 2016) Lots of different penalties can be included in regularization Regularization is useful/important in deep learning (and machine learning in general)

Penalizing Model Complexity Ridge regression: penalize with L2 norm ww = arg min LL(ff(xx ii ; ww), yy ii ) + λλ mm ii jj=1 ww jj 2 Closed form solution exists ww = λλλλ + XX TT XX 1 XX TT yy LASSO regression: penalize with L1 norm ww = arg min ii mm LL(ff(xx ii ; ww), yy ii ) + λλ jj=1 No closed form solution but still convex (optimal solution can be found) ww jj

Effect of λλ Goodfellow et al., 2016 CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Classification CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Classification loss Let ff: XX YY be a classifier Common loss function is the 0/1 loss: LL ff xx, yy = 0, ff xx = yy 1, ff xx yy Risk of a CC-way classifier ff is CC RR ff = LL ff xx, cc pp yy = cc xx pp xx ddxx cc=1 Sufficient to minimize conditional risk: CC RR ff xx = LL ff xx, cc pp(yy = cc xx) cc=1 Assign xx to the cc that maximizes pp(yy = cc xx)

Another point of view Two classes CC 1 and CC 2 and an observation xx R dd Prior class probabilities qq 1 = Pr CC 1 and qq 2 = Pr CC 2 = 1 qq 1 Posterior probability densities pp xx CC 1 and pp xx CC 2 pp xx = qq 1 pp xx CC 1 + qq 2 pp xx CC 2 Goal is to assign xx to either CC 1 or CC 2 Divide R dd into decision regions RR 1 and RR 2 Assign xx to CC 1 if xx RR 1, etc. How do we choose RR 1 and RR 2?

Another point of view Minimize the average probability of error PP ee = Pr CC 2 xx pp xx ddxx + Pr CC 1 xx pp xx ddxx RR 1 RR 2 Assign xx to the CC ii that maximizes Pr CC ii xx Same as before! Equivalent to assigning xx to CC 1 iff qq 1 pp xx CC 1 > qq 2 pp xx CC 2 Known as the Bayes decision rule (derived from Bayes Rule) Corresponding minimum average probability of error (the Bayes error): PP ee = min qq 1 pp xx CC 1, qq 2 pp xx CC 2 ddxx Bayes error is the best error any classifier can achieve

Bayes error of 2 Gaussians PP ee = min qq 1 pp xx CC 1, qq 2 pp xx CC 2 ddxx Corresponds to area under the curves in the center

Logistic Model For binary case, we get that pp yy = 1 xx ff xx = 1 iff log pp yy = 0 xx 0 We can model the decision boundary with a linear function: pp yy = 1 xx log pp yy = 0 xx = 0 = ww 0 + ww TT xx It can be shown that 1 pp yy = 1 xx = 1 + exp( ww 0 ww TT xx) Known as the logistic function

Logistic Model Logistic function 1 pp yy = 1 xx = 1 + exp( ww 0 ww TT xx) Optimal parameters can be found using Maximum Likelihood Constructs a linear decision boundary with linear model Can generalize to nonlinear boundaries This classifier is known as Logistic Regression

Example Hastie et al., 2009 CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

kk-nearest neighbor classifier No training required 1. Find the kk-nearest neighbors of the test point xx in the training data Call this set NN kk (xx) 2. Choose yy according to a majority vote of the corresponding labels of the neighbors in NN kk (xx)

kk-nearest neighbor classifier Hastie et al., 2009 CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Bias-variance tradeoff Prediction errors can be formulated as a sum of variance, bias, and noise Typically, variance comes from differences between training sets, bias from model assumptions, and noise from other factors

Bias-variance tradeoff CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Bias-variance tradeoff CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Common Classification Approaches Decision trees and random forests Bayesian classification (Naïve Bayes and Bayesian Belief Networks) Deep learning! Support Vector Machines Kernel methods

Validation techniques Recall that we consider both training error and test error How do we select the data for estimating the two? Common approaches: Holdout validation: Randomly split the data into two disjoint sets. Train the model on one set and compute test error on the other. Random subsampling: Repeat the holdout validation kk times independently and compute the mean test error Typically these approaches are not very robust

Cross Validation Cross validation averages evaluation scores over several different splits to provide a more realistic assessment Types of cross validation Leave-one-out: Use all data points except one for training and validate on the remaining point. 2-fold cross validation: Randomly split the data into two halves and run two validation iterations, each using one half for training and the other for validation k-fold cross validation: Randomly partition the data into kk equal size parts and run kk validation iterations, each using one part for validation and the rest for training In all cases, the validation scores are averaged Each data point is only used once in testing but many times in training

Anomaly detection Goal: detect significant deviations from normal behavior Examples Credit card fraud detection Cybersecurity intrusion detection Detecting bot traffic in online advertising Malfunction detection in process monitoring Approaches 1-class classification Density estimation Entropy estimation Others

Unsupervised learning CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Unsupervised learning Dataset contains only features and no labels Goal is to find hidden patterns in the unlabeled data Examples Density estimation Data generation Clustering Data denoising Representation learning Aside: Semi-supervised learning attempts to combine information from both labeled and unlabeled data to deduce information

Representation learning Find the best representation of the data I.e., find a representation of the data that preserves as much information as possible while obeying some penalty or constraint that simplifies the representation How do we define simple? Low-dimensional Sparse Independent components Above criteria aren t necessarily mutually exclusive E.g., low-dimensional representations often have independent or weakly dependent components

Principal Components Analysis (PCA) An unsupervised representation learning algorithm Learns a lower dimensional representation Elements are linearly uncorrelated with each other Linear method PCA finds a low-dimensional linear transformation of the data that best reconstructs the original data (in the mean squared error sense) XX is the data matrix XX kk is the reconstructed matrix from the kk-dimensional representation PCA minimizes XX XX kk 2 2

PCA PCA minimizes XX XX kk 2 2 Corresponds to selecting the first kk eigenvectors and eigenvalues of XX TT XX XX TT XX = WWΛWW TT WW kk = the first kk principal components, or the eigenvectors corresponding to the kk largest eigenvalues WW kk gives the low dimensional representation XX kk = XXWW kk WW kk TT gives the reconstruction

PCA Example Goodfellow et al., 2016 CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Manifold learning Informally, a manifold in machine learning loosely means a connected set of points in high dimensions that can be approximated well by a small number of dimensions Generally a good assumption in many machine learning tasks (see Goodfellow book chapter 5.11.3) Goodfellow et al., 2016

Manifold learning CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Manifold learning CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Manifold learning CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Manifold learning CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Manifold learning CPSC/AMTH 663 (Kevin Moon/Guy Wolf) Machine Learning Yale Spring 2018

Manifold learning techniques Isomap Diffusion Maps (developed at Yale) Locally linear embedding Others

Clustering Group objects so that objects within a cluster are similar to each other and dissimilar to objects in another cluster Ill-posed problem MANY clustering algorithms

Clustering Suppose we have cars and trucks that are either red or gray How do you group these? By color? By vehicle type? By both? Different clustering algorithms may give different results Be careful which algorithm you choose Clustering quality depends on interpretability

Clustering Examples Clustering stocks to diversify investment Community detection in social networks Clustering genes and cells to uncover activities, reactions, and interactions Network activity profiling by clustering packets/session Approaches k-means Hierarchical clustering Spectral clustering Variations on these using different metrics

Further reading Chapter 5 in Goodfellow book Elements of Statistical Learning by Hastie, Tibshirani, & Friedman Pattern Recognition and Machine Learning by Bishop Online lecture notes from various sources, etc.