CISC 4631 Data Mining

Similar documents
DATA MINING INTRODUCTION TO CLASSIFICATION USING LINEAR CLASSIFIERS

CS 584 Data Mining. Classification 1

Data Mining Concepts & Techniques

Classification: Basic Concepts, Decision Trees, and Model Evaluation

Part I. Instructor: Wei Ding

Classification and Regression

CSE4334/5334 DATA MINING

Data Mining Concept. References. Why Mine Data? Commercial Viewpoint. Why Mine Data? Scientific Viewpoint

CSE 494/598 Lecture-11: Clustering & Classification

Data Mining. Lecture 03: Nearest Neighbor Learning

CISC 4631 Data Mining

Data Mining Classification: Basic Concepts, Decision Trees, and Model Evaluation. Lecture Notes for Chapter 4. Introduction to Data Mining

Data Mining Classification: Basic Concepts, Decision Trees, and Model Evaluation. Lecture Notes for Chapter 4. Introduction to Data Mining

Machine Learning for. Artem Lind & Aleskandr Tkachenko

Part I. Classification & Decision Trees. Classification. Classification. Week 4 Based in part on slides from textbook, slides of Susan Holmes

Model Selection Introduction to Machine Learning. Matt Gormley Lecture 4 January 29, 2018

CISC 4631 Data Mining

DATA MINING LECTURE 11. Classification Basic Concepts Decision Trees Evaluation Nearest-Neighbor Classifier

List of Exercises: Data Mining 1 December 12th, 2015

INTRODUCTION TO MACHINE LEARNING. Measuring model performance or error

DATA MINING LECTURE 9. Classification Basic Concepts Decision Trees Evaluation

Classification Salvatore Orlando

A Systematic Overview of Data Mining Algorithms. Sargur Srihari University at Buffalo The State University of New York

Machine Learning: Algorithms and Applications Mockup Examination

Data Mining and Soft Computing

Pattern recognition (4)

CS 584 Data Mining. Classification 3

k-nearest Neighbors + Model Selection

DATA MINING LECTURE 10B. Classification k-nearest neighbor classifier Naïve Bayes Logistic Regression Support Vector Machines

DATA MINING LECTURE 9. Classification Decision Trees Evaluation

Probabilistic Classifiers DWML, /27

Information Management course

Lecture 6 K- Nearest Neighbors(KNN) And Predictive Accuracy

Contents Machine Learning concepts 4 Learning Algorithm 4 Predictive Model (Model) 4 Model, Classification 4 Model, Regression 4 Representation

Input: Concepts, Instances, Attributes

Introduction to Artificial Intelligence

Data Mining Classification: Alternative Techniques. Imbalanced Class Problem

Data Warehousing & Data Mining

Topic 1 Classification Alternatives

Basic Concepts Weka Workbench and its terminology

Introduction to Support Vector Machines

Lecture 9: Support Vector Machines

CSEP 573: Artificial Intelligence

Data Mining: Concepts and Techniques. Chapter 9 Classification: Support Vector Machines. Support Vector Machines (SVMs)

Weka ( )

Data Mining. Practical Machine Learning Tools and Techniques. Slides for Chapter 3 of Data Mining by I. H. Witten, E. Frank and M. A.

Lecture 7: Decision Trees

Introduction to Machine Learning

Machine Learning Chapter 2. Input

Global Journal of Engineering Science and Research Management

Chapter 3: Supervised Learning

Classification: Linear Discriminant Functions

CS6375: Machine Learning Gautam Kunapuli. Mid-Term Review

CS246: Mining Massive Datasets Jure Leskovec, Stanford University

Supervised Learning Classification Algorithms Comparison

Data Mining: Exploring Data. Lecture Notes for Data Exploration Chapter. Introduction to Data Mining

Data Mining. Practical Machine Learning Tools and Techniques. Slides for Chapter 3 of Data Mining by I. H. Witten, E. Frank and M. A.

Data Mining: Exploring Data. Lecture Notes for Chapter 3. Introduction to Data Mining

Data Mining Practical Machine Learning Tools and Techniques. Slides for Chapter 6 of Data Mining by I. H. Witten and E. Frank

Naïve Bayes for text classification

Introduction to Information Retrieval

Evaluation Metrics. (Classifiers) CS229 Section Anand Avati

Introduction to Automated Text Analysis. bit.ly/poir599

Statistics 202: Statistical Aspects of Data Mining

Network Traffic Measurements and Analysis

k-nn Disgnosing Breast Cancer

Applying Supervised Learning

Support Vector Machines

KTH ROYAL INSTITUTE OF TECHNOLOGY. Lecture 14 Machine Learning. K-means, knn

Classification. Instructor: Wei Ding

Evaluation of different biological data and computational classification methods for use in protein interaction prediction.

Support Vector Machines

BBS654 Data Mining. Pinar Duygulu. Slides are adapted from Nazli Ikizler

8/19/13. Computational problems. Introduction to Algorithm

Extra readings beyond the lecture slides are important:

An Introduction to Cluster Analysis. Zhaoxia Yu Department of Statistics Vice Chair of Undergraduate Affairs

INTRODUCTION TO DATA MINING. Daniel Rodríguez, University of Alcalá

Hsiaochun Hsu Date: 12/12/15. Support Vector Machine With Data Reduction

Data Mining Practical Machine Learning Tools and Techniques

Machine Learning Classifiers and Boosting

CSE Data Mining Concepts and Techniques STATISTICAL METHODS (REGRESSION) Professor- Anita Wasilewska. Team 13

Data Mining: Exploring Data. Lecture Notes for Chapter 3

Data Mining Classification: Bayesian Decision Theory

CSE 158. Web Mining and Recommender Systems. Midterm recap

Instance-Based Representations. k-nearest Neighbor. k-nearest Neighbor. k-nearest Neighbor. exemplars + distance measure. Challenges.

Experimental Design + k- Nearest Neighbors

Performance Analysis of Data Mining Classification Techniques

CS570: Introduction to Data Mining

Computational Statistics The basics of maximum likelihood estimation, Bayesian estimation, object recognitions

Data analysis case study using R for readily available data set using any one machine learning Algorithm

CS249: ADVANCED DATA MINING

A Classifier with the Function-based Decision Tree

Large-Scale Lasso and Elastic-Net Regularized Generalized Linear Models

Classification. Instructor: Wei Ding

.. Cal Poly CSC 466: Knowledge Discovery from Data Alexander Dekhtyar.. for each element of the dataset we are given its class label.

K- Nearest Neighbors(KNN) And Predictive Accuracy

CS Machine Learning

Classification. Slide sources:

Large Scale Data Analysis Using Deep Learning

Summary. Machine Learning: Introduction. Marcin Sydow

Transcription:

CISC 4631 Data Mining Lecture 03: Introduction to classification Linear classifier Theses slides are based on the slides by Tan, Steinbach and Kumar (textbook authors) Eamonn Koegh (UC Riverside) 1

Classification: Definition Given a collection of records (training set ) Each record contains a set of attributes, one of the attributes is the class. Find a model for class attribute as a function of the values of other attributes. Goal: previously unseen records should be assigned a class as accurately as possible. A test set is used to determine the accuracy of the model. Usually, the given data set is divided into training and test sets, with training set used to build the model and test set used to validate it. 2

10 10 Illustrating Classification Task Tid Attrib1 Attrib2 Attrib3 Class 1 Yes Large 125K No 2 No Medium 100K No 3 No Small 70K No 4 Yes Medium 120K No 5 No Large 95K Yes 6 No Medium 60K No 7 Yes Large 220K No 8 No Small 85K Yes 9 No Medium 75K No 10 No Small 90K Yes Training Set Tid Attrib1 Attrib2 Attrib3 Class 11 No Small 55K? 12 Yes Medium 80K? 13 Yes Large 110K? 14 No Small 95K? 15 No Large 67K? Test Set Induction Deduction Learning algorithm Learn Model Apply Model Model 3

Examples of Classification Task Predicting tumor cells as benign or malignant Classifying credit card transactions as legitimate or fraudulent Classifying secondary structures of protein as alpha-helix, beta-sheet, or random coil Categorizing news stories as finance, weather, entertainment, sports, etc 4

Classification Techniques Decision Tree based Methods Rule-based Methods Memory based reasoning Neural Networks Naïve Bayes and Bayesian Belief Networks Support Vector Machines We will start with a simple linear classifier 5

The Classification Problem (informal definition) Katydids Given a collection of annotated data. In this case 5 instances Katydids of and five of Grasshoppers, decide what type of insect the unlabeled example is. Grasshoppers Katydid or Grasshopper? 6

Color {Green, Brown, Gray, Other} For any domain of interest, we can measure features Has Wings? Abdomen Length Thorax Length Antennae Length Mandible Size Spiracle Diameter Leg Length 7

We can store features in a database. The classification problem can now be expressed as: Given a training database (My_Collection), predict the class label of a previously unseen instance Insect ID My_Collection Abdomen Length Antennae Length Insect Class 1 2.7 5.5 Grasshopper 2 8.0 9.1 Katydid 3 0.9 4.7 Grasshopper 4 1.1 3.1 Grasshopper 5 5.4 8.5 Katydid 6 2.9 1.9 Grasshopper 7 6.1 6.6 Katydid 8 0.5 1.0 Grasshopper 9 8.3 6.6 Katydid 10 8.1 4.7 Katydids previously unseen instance = 11 5.1 7.0??????? 8

Grasshoppers Antenna Length Katydids 10 9 8 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 9 10 Abdomen Length 9

Grasshoppers Antenna Length Katydids 10 9 8 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 9 10 Abdomen Length Each of these data objects are called exemplars (training) examples instances tuples 10

We will return to the previous slide in two minutes. In the meantime, we are going to play a quick game. 11

Problem 1 Examples of class A Examples of class B 3 4 5 2.5 1.5 5 5 2 6 8 8 3 2.5 5 4.5 3 12

Problem 1 Examples of class A Examples of class B What class is this object? 3 4 5 2.5 8 1.5 1.5 5 5 2 What about this one, A or B? 6 8 8 3 2.5 5 4.5 3 4.5 7 13

Problem 2 Oh! This ones hard! Examples of class A Examples of class B 4 4 5 2.5 8 1.5 5 5 2 5 6 6 5 3 3 3 2.5 3 14

Problem 3 Examples of class A Examples of class B 6 6 4 4 5 6 This one is really hard! What is this, A or B? 1 5 7 5 6 3 4 8 3 7 7 7 15

Why did we spend so much time with this game? Because we wanted to show that almost all classification problems have a geometric interpretation, check out the next 3 slides 16

Left Bar Problem 1 Examples of class A Examples of class B 3 4 5 2.5 10 9 8 7 6 5 4 3 2 1 1.5 5 6 8 5 2 8 3 1 2 3 4 5 6 7 8 9 10 Right Bar Here is the rule again. If the left bar is smaller than the right bar, it is an A, otherwise it is a B. 2.5 5 4.5 3 17

Left Bar Problem 2 Examples of class A Examples of class B 4 4 5 2.5 10 9 8 7 6 5 4 3 2 1 5 5 6 6 2 5 5 3 1 2 3 4 5 6 7 8 9 10 Right Bar Let me look it up here it is.. the rule is, if the two bars are equal sizes, it is an A. Otherwise it is a B. 3 3 2.5 3 18

Left Bar Problem 3 Examples of class A Examples of class B 4 4 5 6 100 90 80 70 60 50 40 30 20 10 1 5 7 5 10 20 30 40 50 60 70 80 90 100 Right Bar 6 3 3 7 4 8 7 7 The rule again: if the square of the sum of the two bars is less than or equal to 100, it is an A. Otherwise it is a B. 19

Grasshoppers Antenna Length Katydids 10 9 8 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 9 10 Abdomen Length 20

Antenna Length previously unseen instance = 11 5.1 7.0??????? 10 9 8 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 9 10 Abdomen Length We can project the previously unseen instance into the same space as the database. We have now abstracted away the details of our particular problem. It will be much easier to talk about points in space. Katydids Grasshoppers 21

Simple Linear Classifier 10 9 8 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 9 10 If previously unseen instance above the line then class is Katydid else class is Grasshopper Katydids Grasshoppers R.A. Fisher 1890-1962 22

Classification Accuracy Predicted class Class = Katydid (1) Class = Grasshopper (0) Actual Class Class = Katydid (1) f 11 f 10 Class = Grasshopper (0) f 01 f 00 Number of correct predictions f 11 + f 00 Accuracy = --------------------------------------------- = ----------------------- Total number of predictions f 11 + f 10 + f 01 + f 00 Number of wrong predictions f 10 + f 01 Error rate = --------------------------------------------- = ----------------------- Total number of predictions f 11 + f 10 + f 01 + f 00 23

Confusion Matrix In a binary decision problem, a classifier labels examples as either positive or negative. Classifiers produce confusion/ contingency matrix, which shows four entities: TP (true positive), TN (true negative), FP (false positive), FN (false negative) Confusion Matrix Predicted positive (Y) Predicted negative (N) Positive (+) TP FN Negative (-) FP TN 24

The simple linear classifier is defined for higher dimensional spaces 25

we can visualize it as being an n-dimensional hyperplane 26

It is interesting to think about what would happen in this example if we did not have the 3 rd dimension 27

We can no longer get perfect accuracy with the simple linear classifier We could try to solve this problem by user a simple quadratic classifier or a simple cubic classifier.. However, as we will later see, this is probably a bad idea 28

Which of the Problems can be solved by the Simple Linear Classifier? 1) Perfect 2) Useless 3) Pretty Good 10 9 8 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 9 10 Problems that can be solved by a linear classifier are call linearly separable. 100 90 80 70 60 50 40 30 20 10 10 20 30 40 50 60 70 80 90 100 10 9 8 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 9 10 29

A Famous Problem R. A. Fisher s Iris Dataset. Virginica 3 classes 50 of each class The task is to classify Iris plants into one of 3 varieties using the Petal Length and Petal Width. Setosa Versicolor Iris Setosa Iris Versicolor Iris Virginica 30

We can generalize the piecewise linear classifier to N classes, by fitting N-1 lines. In this case we first learned the line to (perfectly) discriminate between Setosa and Virginica/Versicolor, then we learned to approximately discriminate between Virginica and Versicolor. Virginica Setosa Versicolor If petal width > 3.272 (0.325 * petal length) then class = Virginica Elseif petal width 31

We have now seen one classification algorithm, and we are about to see more. How should we compare them? Predictive accuracy Speed and scalability time to construct the model time to use the model efficiency in disk-resident databases Robustness handling noise, missing values and irrelevant features, streaming data Interpretability: understanding and insight provided by the model 32