Download presentation
Presentation is loading. Please wait.
Published byBritney Stevens Modified over 9 years ago
1
Data Mining Classification: Alternative Techniques Lecture Notes for Chapter 5 Introduction to Data Mining by Tan, Steinbach, Kumar © Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 1
2
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 2 Instance-Based Classifiers Store the training records Use training records to predict the class label of unseen cases
3
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 3 Instance Based Classifiers l Examples: –Rote-learner Memorizes entire training data and performs classification only if attributes of record match one of the training examples exactly –Nearest neighbor Uses k “closest” points (nearest neighbors) for performing classification
4
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 4 Nearest Neighbor Classifiers l Basic idea: –If it walks like a duck, quacks like a duck, then it’s probably a duck Training Records Test Record Compute Distance Choose k of the “nearest” records
5
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 5 Nearest-Neighbor Classifiers l Requires three things –The set of stored records –Distance Metric to compute distance between records –The value of k, the number of nearest neighbors to retrieve l To classify an unknown record: –Compute distance to other training records –Identify k nearest neighbors –Use class labels of nearest neighbors to determine the class label of unknown record (e.g., by taking majority vote)
6
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 6 Definition of Nearest Neighbor K-nearest neighbors of a record x are data points that have the k smallest distance to x
7
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 7 1 nearest-neighbor Voronoi Diagram
8
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 8 Nearest Neighbor Classification l Compute distance between two points: –Euclidean distance l Determine the class from nearest neighbor list –take the majority vote of class labels among the k-nearest neighbors –Weigh the vote according to distance weight factor, w = 1/d 2
9
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 9 Nearest Neighbor Classification… l Choosing the value of k: –If k is too small, sensitive to noise points –If k is too large, neighborhood may include points from other classes
10
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 10 Nearest Neighbor Classification… l Scaling issues –Attributes may have to be scaled to prevent distance measures from being dominated by one of the attributes –Example: height of a person may vary from 1.5m to 1.8m weight of a person may vary from 90lb to 300lb income of a person may vary from $10K to $1M
11
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 11 Nearest Neighbor Classification… l Problem with Euclidean measure: –High dimensional data curse of dimensionality Solution: Normalize the vectors to unit length
12
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 12 Nearest neighbor Classification… l k-NN classifiers are lazy learners –It does not build models explicitly –Unlike eager learners such as decision tree induction and rule-based systems –Classifying unknown records are relatively expensive
13
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 13 Example: PEBLS l PEBLS: Parallel Examplar-Based Learning System (Cost & Salzberg) –Works with both continuous and nominal features For nominal features, distance between two nominal values is computed using modified value difference metric (MVDM) –Each record is assigned a weight factor –Number of nearest neighbor, k = 1
14
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 14 Example: PEBLS Class Marital Status SingleMarriedDivorced Yes201 No241 Distance between nominal attribute values: d(Single,Married) = | 2/4 – 0/4 | + | 2/4 – 4/4 | = 1 d(Single,Divorced) = | 2/4 – 1/2 | + | 2/4 – 1/2 | = 0 d(Married,Divorced) = | 0/4 – 1/2 | + | 4/4 – 1/2 | = 1 d(Refund=Yes,Refund=No) = | 0/3 – 3/7 | + | 3/3 – 4/7 | = 6/7 Class Refund YesNo Yes03 No34
15
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 15 Example: PEBLS Distance between record X and record Y: where: w X 1 if X makes accurate prediction most of the time w X > 1 if X is not reliable for making predictions
16
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 16 Bayes Classifier l A probabilistic framework for solving classification problems l Conditional Probability: l Bayes theorem:
17
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 17 Example of Bayes Theorem l Given: –A doctor knows that meningitis causes stiff neck 50% of the time –Prior probability of any patient having meningitis is 1/50,000 –Prior probability of any patient having stiff neck is 1/20 l If a patient has stiff neck, what’s the probability he/she has meningitis?
18
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 18 Bayesian Classifiers l Consider each attribute and class label as random variables l Given a record with attributes (A 1, A 2,…,A n )=A –Goal is to predict class C –Specifically, we want to find the value of C that maximizes P(C= c j | A=a ) Maximum posterior classifier: optimal=minimizes error probability l Can we estimate P(C= c j | A=a ) directly from data?
19
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 19 Bayesian Classifiers l Approach: –compute the posterior probability P(C= c j | A=a ) for all values c j of C using the Bayes theorem –Choose value of C that maximizes P(C= c j | A=a ) –Equivalent to choosing value of C that maximizes P(A=a|C= c j ) P(C= c j ) l How to estimate likelihood P(A=a|C= c j )?
20
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 20 Naïve Bayes Classifier l Assume independence among attributes A i when class is given: P(A=a|C=c j )=P(A 1 =a 1 |C=c j )P(A 2 =a 2 |C=c j )…P(A n =a n |C=c j ) Can estimate P(A i =a i |C=c j ) for all A i and c j. New point is classified to c j if P(C=c j ) P(A i =a i |C=c j ) is maximal.
21
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 21 How to Estimate Probabilities from Data? l Class: P(C) = N c /N –e.g., P(No) = 7/10, P(Yes) = 3/10 l For discrete attributes: P(A i | C k ) = |A ik |/ N c –where |A ik | is number of instances having attribute A i and belongs to class C k –Examples: P(Status=Married|No) = 4/7 P(Refund=Yes|Yes)=0 k
22
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 22 Naïve Bayes Classifier l If one of the conditional probability is zero, then the entire expression becomes zero l Probability estimation: s i : number of values of A i p(a i ): prior probability m: parameter
23
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 23 How to Estimate Probabilities from Data? l For continuous attributes: –Discretize the range into bins one ordinal attribute per bin violates independence assumption –Two-way split: (A v) choose only one of the two splits as new attribute –Probability density estimation: Assume attribute follows a normal distribution Use data to estimate parameters of distribution (e.g., mean and standard deviation) k
24
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 24 How to Estimate Probabilities from Data? l Normal distribution: –One for each (A i,c j ) pair l For (Income, Class=No): –If Class=No sample mean = 110 sample variance = 2975
25
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 25 Example of Naïve Bayes Classifier with original estimate: l P(X|Class=No) = P(Refund=No|Class=No) P(Married| Class=No) f(Income=120K| Class=No) = 4/7 4/7 0.0072 = 0.0024 l P(X|Class=Yes) = P(Refund=No| Class=Yes) P(Married| Class=Yes) f(Income=120K| Class=Yes) = 1 0 1.2 10 -9 = 0 Since P(X|No)P(No) > P(X|Yes)P(Yes) Therefore P(No|X) > P(Yes|X) => Class = No Given a Test Record:
26
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 26 Example of Naïve Bayes Classifier with Laplace estimate: A: attributes M: mammals N: non-mammals P(A|M)P(M) > P(A|N)P(N) => Mammals
27
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 27 Naïve Bayes (Summary) l Robust to isolated noise points l Handle missing values by ignoring the instance during probability estimate calculations l Robust to irrelevant attributes l Independence assumption may not hold for some attributes –Use other techniques such as Bayesian Belief Networks (BBN)
28
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 28 Artificial Neural Networks (ANN) Output Y is 1 if at least two of the three inputs are equal to 1.
29
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 29 Artificial Neural Networks (ANN)
30
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 30 Artificial Neural Networks (ANN) l Model is an assembly of inter-connected nodes and weighted links l Output node sums up each of its input value according to the weights of its links l Compare output node against some threshold t Perceptron Model or
31
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 31 Perceptron algorithm Minden x attributumvektort kiegészítjük egy d+1-edik értékkel (mindig 1) Legyen w=(0,0,...0) while van helytelenül klasszifikált eleme a tanító adathalmaznak for all x if x rosszul klasszifikált then if x az első osztályba tartozik then w=w+x else w=w-x Lineárisan szeparálható osztályok esetén a perceptron tanulás véges iteráció után megáll.
32
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 32 Linearly separable
33
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 33 Not linearly separable
34
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 34 General Structure of ANN Training ANN means learning the weights of the neurons
35
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 35 Activation function
36
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 36 Algorithm for learning ANN l Initialize the weights (w 0, w 1, …, w k ) l Adjust the weights in such a way that the output of ANN is consistent with class labels of training examples –Objective function: –Find the weights w i ’s that minimize the above objective function e.g., backpropagation algorithm (see lecture notes)
37
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 37 Support Vector Machines l Find a linear hyperplane (decision boundary) that will separate the data
38
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 38 Support Vector Machines l One Possible Solution
39
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 39 Support Vector Machines l Another possible solution
40
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 40 Support Vector Machines l Other possible solutions
41
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 41 Support Vector Machines l Which one is better? B1 or B2? l How do you define better?
42
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 42 Support Vector Machines l Find hyperplane maximizes the margin => B1 is better than B2
43
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 43 Support Vector Machines
44
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 44 Support Vector Machines l We want to maximize: –Which is equivalent to minimizing: –But subjected to the following constraints: This is a constrained optimization problem –Numerical approaches to solve it (e.g., quadratic programming)
45
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 45 Support Vector Machines l What if the problem is not linearly separable?
46
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 46 Support Vector Machines l What if the problem is not linearly separable? –Introduce slack variables Need to minimize: Subject to:
47
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 47 Nonlinear Support Vector Machines l What if decision boundary is not linear?
48
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 48 Nonlinear Support Vector Machines l Transform data into higher dimensional space
49
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 49 Ensemble Methods l Construct a set of classifiers from the training data l Predict class label of previously unseen records by aggregating predictions made by multiple classifiers
50
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 50 General Idea
51
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 51 Why does it work? l Suppose there are 25 base classifiers –Each classifier has error rate, = 0.35 –Assume classifiers are independent –Probability that the ensemble classifier makes a wrong prediction:
52
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 52 Examples of Ensemble Methods l How to generate an ensemble of classifiers? –Bagging –Boosting
53
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 53 Bagging l Sampling with replacement l Build classifier on each bootstrap sample l Each sample has probability (1 – 1/n) n of being selected
54
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 54 Boosting l An iterative procedure to adaptively change distribution of training data by focusing more on previously misclassified records –Initially, all N records are assigned equal weights –Unlike bagging, weights may change at the end of boosting round
55
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 55 Boosting l Records that are wrongly classified will have their weights increased l Records that are classified correctly will have their weights decreased Example 4 is hard to classify Its weight is increased, therefore it is more likely to be chosen again in subsequent rounds
56
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 56 Example: AdaBoost l Base classifiers: C 1, C 2, …, C T l Error rate: l Importance of a classifier:
57
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 57 Example: AdaBoost l Weight update: l If any intermediate rounds produce error rate higher than 50%, the weights are reverted back to 1/n and the resampling procedure is repeated l Classification:
58
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 58 Illustrating AdaBoost Data points for training Initial weights for each data point
59
© Tan,Steinbach, Kumar Introduction to Data Mining 4/18/2004 59 Illustrating AdaBoost
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.