SlideShare a Scribd company logo
Modul 6:
Classification
2
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.
3
Illustrating Classification Task
Apply
Model
Induction
Deduction
Learn
Model
Model
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
10
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 ?
10
Test Set
Learning
algorithm
Training Set
4
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
5
Classification Techniques
 Decision Tree based Methods
 Rule-based Methods
 Memory based reasoning
 Neural Networks
 Naïve Bayes and Bayesian Belief Networks
 Support Vector Machines
6
Example of a Decision Tree
Tid Refund Marital
Status
Taxable
Income Cheat
1 Yes Single 125K No
2 No Married 100K No
3 No Single 70K No
4 Yes Married 120K No
5 No Divorced 95K Yes
6 No Married 60K No
7 Yes Divorced 220K No
8 No Single 85K Yes
9 No Married 75K No
10 No Single 90K Yes
10
Refund
MarSt
TaxInc
YESNO
NO
NO
Yes No
MarriedSingle, Divorced
< 80K > 80K
Splitting Attributes
Training Data Model: Decision Tree
7
Another Example of Decision Tree
Tid Refund Marital
Status
Taxable
Income Cheat
1 Yes Single 125K No
2 No Married 100K No
3 No Single 70K No
4 Yes Married 120K No
5 No Divorced 95K Yes
6 No Married 60K No
7 Yes Divorced 220K No
8 No Single 85K Yes
9 No Married 75K No
10 No Single 90K Yes
10
MarSt
Refund
TaxInc
YESNO
NO
NO
Yes No
Married
Single,
Divorced
< 80K > 80K
There could be more than one tree that
fits the same data!
8
Decision Tree Classification Task
Apply
Model
Induction
Deduction
Learn
Model
Model
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
10
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 ?
10
Test Set
Tree
Induction
algorithm
Training Set
Decision
Tree
9
Apply Model to Test Data
Refund
MarSt
TaxInc
YESNO
NO
NO
Yes No
MarriedSingle, Divorced
< 80K > 80K
Refund Marital
Status
Taxable
Income Cheat
No Married 80K ?
10
Test Data
Start from the root of tree.
10
Apply Model to Test Data
Refund
MarSt
TaxInc
YESNO
NO
NO
Yes No
MarriedSingle, Divorced
< 80K > 80K
Refund Marital
Status
Taxable
Income Cheat
No Married 80K ?
10
Test Data
11
Apply Model to Test Data
Refund
MarSt
TaxInc
YESNO
NO
NO
Yes No
MarriedSingle, Divorced
< 80K > 80K
Refund Marital
Status
Taxable
Income Cheat
No Married 80K ?
10
Test Data
12
Apply Model to Test Data
Refund
MarSt
TaxInc
YESNO
NO
NO
Yes No
MarriedSingle, Divorced
< 80K > 80K
Refund Marital
Status
Taxable
Income Cheat
No Married 80K ?
10
Test Data
13
Apply Model to Test Data
Refund
MarSt
TaxInc
YESNO
NO
NO
Yes No
MarriedSingle, Divorced
< 80K > 80K
Refund Marital
Status
Taxable
Income Cheat
No Married 80K ?
10
Test Data
14
Apply Model to Test Data
Refund
MarSt
TaxInc
YESNO
NO
NO
Yes No
MarriedSingle, Divorced
< 80K > 80K
Refund Marital
Status
Taxable
Income Cheat
No Married 80K ?
10
Test Data
Assign Cheat to “No”
15
Decision Tree Classification Task
Apply
Model
Induction
Deduction
Learn
Model
Model
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
10
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 ?
10
Test Set
Tree
Induction
algorithm
Training Set
Decision
Tree
16
Decision Tree Induction
 Many Algorithms:
 Hunt’s Algorithm (one of the earliest)
 CART
 ID3, C4.5
 SLIQ,SPRINT
17
General Structure of Hunt’s Algorithm
 Let Dt be the set of training records
that reach a node t
 General Procedure:
 If Dt contains records that belong the
same class yt, then t is a leaf node
labeled as yt
 If Dt is an empty set, then t is a leaf
node labeled by the default class, yd
 If Dt contains records that belong to
more than one class, use an attribute
test to split the data into smaller
subsets. Recursively apply the
procedure to each subset.
Tid Refund Marital
Status
Taxable
Income Cheat
1 Yes Single 125K No
2 No Married 100K No
3 No Single 70K No
4 Yes Married 120K No
5 No Divorced 95K Yes
6 No Married 60K No
7 Yes Divorced 220K No
8 No Single 85K Yes
9 No Married 75K No
10 No Single 90K Yes
10
Dt
?
18
Hunt’s Algorithm
Don’t
Cheat
Refund
Don’t
Cheat
Don’t
Cheat
Yes No
Refund
Don’t
Cheat
Yes No
Marital
Status
Don’t
Cheat
Cheat
Single,
Divorced
Married
Taxable
Income
Don’t
Cheat
< 80K >= 80K
Refund
Don’t
Cheat
Yes No
Marital
Status
Don’t
Cheat
Cheat
Single,
Divorced
Married
Tid Refund Marital
Status
Taxable
Income Cheat
1 Yes Single 125K No
2 No Married 100K No
3 No Single 70K No
4 Yes Married 120K No
5 No Divorced 95K Yes
6 No Married 60K No
7 Yes Divorced 220K No
8 No Single 85K Yes
9 No Married 75K No
10 No Single 90K Yes
10
19
Tree Induction
 Greedy strategy.
 Split the records based on an attribute test that optimizes
certain criterion.
 Issues
 Determine how to split the records
 How to specify the attribute test condition?
 How to determine the best split?
 Determine when to stop splitting
20
How to Specify Test Condition?
 Depends on attribute types
 Nominal
 Ordinal
 Continuous
 Depends on number of ways to split
 2-way split
 Multi-way split
21
Splitting Based on Nominal Attributes
 Multi-way split: Use as many partitions as distinct values.
 Binary split: Divides values into two subsets.
Need to find optimal partitioning.
CarType
Family
Sports
Luxury
CarType
{Family,
Luxury} {Sports}
CarType
{Sports,
Luxury} {Family} OR
22
 Multi-way split: Use as many partitions as distinct values.
 Binary split: Divides values into two subsets.
Need to find optimal partitioning.
 What about this split?
Splitting Based on Ordinal Attributes
Size
Small
Medium
Large
Size
{Medium,
Large} {Small}Size
{Small,
Medium} {Large}
OR
Size
{Small,
Large} {Medium}
23
Splitting Based on Continuous Attributes
 Different ways of handling
 Discretization to form an ordinal categorical attribute
 Static – discretize once at the beginning
 Dynamic – ranges can be found by equal interval
bucketing, equal frequency bucketing
(percentiles), or clustering.
 Binary Decision: (A < v) or (A  v)
 consider all possible splits and finds the best cut
 can be more compute intensive
24
Splitting Based on Continuous Attributes
Taxable
Income
> 80K?
Yes No
Taxable
Income?
(i) Binary split (ii) Multi-way split
< 10K
[10K,25K) [25K,50K) [50K,80K)
> 80K
25
How to determine the Best Split
Own
Car?
C0: 6
C1: 4
C0: 4
C1: 6
C0: 1
C1: 3
C0: 8
C1: 0
C0: 1
C1: 7
Car
Type?
C0: 1
C1: 0
C0: 1
C1: 0
C0: 0
C1: 1
Student
ID?
...
Yes No Family
Sports
Luxury c1
c10
c20
C0: 0
C1: 1
...
c11
Before Splitting: 10 records of class 0,
10 records of class 1
Which test condition is the best?
26
How to determine the Best Split
 Greedy approach:
 Nodes with homogeneous class distribution are preferred
 Need a measure of node impurity:
C0: 5
C1: 5
C0: 9
C1: 1
Non-homogeneous,
High degree of impurity
Homogeneous,
Low degree of impurity
27
Measures of Node Impurity
 Gini Index
 Entropy
 Misclassification error
28
Measure of Impurity: GINI
 Gini Index for a given node t :
(NOTE: p( j | t) is the relative frequency of class j at node t).
 Maximum (1 - 1/nc) when records are equally distributed among all
classes, implying least interesting information
 Minimum (0.0) when all records belong to one class, implying most
interesting information

j
tjptGINI 2
)]|([1)(
C1 0
C2 6
Gini=0.000
C1 2
C2 4
Gini=0.444
C1 3
C2 3
Gini=0.500
C1 1
C2 5
Gini=0.278
29
Examples for computing GINI
C1 0
C2 6
C1 2
C2 4
C1 1
C2 5
P(C1) = 0/6 = 0 P(C2) = 6/6 = 1
Gini = 1 – P(C1)2 – P(C2)2 = 1 – 0 – 1 = 0

j
tjptGINI 2
)]|([1)(
P(C1) = 1/6 P(C2) = 5/6
Gini = 1 – (1/6)2 – (5/6)2 = 0.278
P(C1) = 2/6 P(C2) = 4/6
Gini = 1 – (2/6)2 – (4/6)2 = 0.444
30
Alternative Splitting Criteria based on INFO
 Entropy at a given node t:
(NOTE: p( j | t) is the relative frequency of class j at node t).
 Measures homogeneity of a node.
 Maximum (log nc) when records are equally distributed among all
classes implying least information
 Minimum (0.0) when all records belong to one class, implying most
information
 Entropy based computations are similar to the GINI index
computations
 j
tjptjptEntropy )|(log)|()(
31
Examples for computing Entropy
C1 0
C2 6
C1 2
C2 4
C1 1
C2 5
P(C1) = 0/6 = 0 P(C2) = 6/6 = 1
Entropy = – 0 log 0 – 1 log 1 = – 0 – 0 = 0
P(C1) = 1/6 P(C2) = 5/6
Entropy = – (1/6) log2 (1/6) – (5/6) log2 (5/6) = 0.65
P(C1) = 2/6 P(C2) = 4/6
Entropy = – (2/6) log2 (2/6) – (4/6) log2 (4/6) = 0.92
 j
tjptjptEntropy )|(log)|()( 2
32
Splitting Criteria based on Classification Error
 Classification error at a node t :
 Measures misclassification error made by a node.
 Maximum (1 - 1/nc) when records are equally distributed among all
classes, implying least interesting information
 Minimum (0.0) when all records belong to one class, implying most
interesting information
)|(max1)( tiPtError i

33
Examples for Computing Error
C1 0
C2 6
C1 2
C2 4
C1 1
C2 5
P(C1) = 0/6 = 0 P(C2) = 6/6 = 1
Error = 1 – max (0, 1) = 1 – 1 = 0
P(C1) = 1/6 P(C2) = 5/6
Error = 1 – max (1/6, 5/6) = 1 – 5/6 = 1/6
P(C1) = 2/6 P(C2) = 4/6
Error = 1 – max (2/6, 4/6) = 1 – 4/6 = 1/3
)|(max1)( tiPtError i

34
Example: Splitting Based on ENTROPY
 Information Gain:
Parent Node, p is split into k partitions;
ni is number of records in partition i
 Measures Reduction in Entropy achieved because of the split.
Choose the split that achieves most reduction (maximizes
GAIN)
 Goal: maximize the GAIN
 Used in ID3 and C4.5
 Disadvantage: Tends to prefer splits that result in large number
of partitions, each being small but pure.






 

k
i
i
split
iEntropy
n
n
pEntropyGAIN 1
)()(
35
Computing GAIN
Tid Refund Marital
Status
Taxable
Income Class
1 Yes Single 125K No
2 No Married 100K No
3 No Single 70K No
4 Yes Married 120K No
5 No Divorced 95K Yes
6 No Married 60K No
7 Yes Divorced 220K No
8 No Single 85K Yes
9 No Married 75K No
10 ? Single 90K Yes
10
Class
= Yes
Class
= No
Refund=Yes 0 3
Refund=No 2 4
Refund=? 1 0
Split on Refund:
Entropy(Refund=Yes) = 0
Entropy(Refund=No)
= -(2/6)log(2/6) – (4/6)log(4/6) = 0.9183
Entropy(Children)
= 0.3 (0) + 0.6 (0.9183) = 0.551
Gain = 0.9  (0.8813 – 0.551) = 0.3303
Missing
value
Before Splitting:
Entropy(Parent)
= -0.3 log(0.3)-(0.7)log(0.7) = 0.8813
36
Splitting Based on ENTROPY
 Gain Ratio:
Parent Node, p is split into k partitions
ni is the number of records in partition i
 Adjusts Information Gain by the entropy of the partitioning
(SplitINFO). Higher entropy partitioning (large number of small
partitions) is penalized!
 Used in C4.5
 Designed to overcome the disadvantage of Information Gain
SplitINFO
GAIN
GainRATIO Split
split
 


k
i
ii
n
n
n
n
SplitINFO 1
log
37
Stopping Criteria for Tree Induction
 Stop expanding a node when all the records belong to the
same class
 Stop expanding a node when all the records have similar
attribute values
 Early termination
38
Decision Tree Based Classification
 Advantages:
 Inexpensive to construct
 Extremely fast at classifying unknown records
 Easy to interpret for small-sized trees
 Accuracy is comparable to other classification techniques for
many simple data sets
39
Example: C4.5
 Simple depth-first construction.
 Uses Information Gain
 Sorts Continuous Attributes at each node.
 Needs entire data to fit in memory.
 Unsuitable for Large Datasets.
 Needs out-of-core sorting.
 You can download the software from:
http://www.cse.unsw.edu.au/~quinlan/c4.5r8.tar.gz
Demo: Using C5
(www.rulequest.com)
41
What is See5
 Data mining software for classification
 Technique: decision tree
 Decision tree algorithm: C5.0
42
Sample applications using See5
 Predicting Magnetic Properties of Crystals
 To develop rules that predict whether a substance is magnetic
or not (National Research Council Canada)
 24641 cases, 120 attributes/case
 Profiling High Income Earners from Census Data
 To predict whether the individual's income is above or below
$50,000 (US Census Bureau Database)
 200,000 cases, 40 attributes/cases (7 numeric, 33 nominal
atts)
43
Classification
44
Preparing data for See5
45
Preparing data for See5
 Files used in See5 have names of the form filestem.extension
46
Preparing data for See5
 Content of a hypothyroid.names file
47
Preparing data for See5
 Types of attributes
 Continuous: numeric values
 Date: dates in the form YYYY/MM/DD or YYYY-MM-DD
 Time: times in the form HH:MM:SS
 Timestamp: times in the form YYYY/MM/DD HH:MM:SS
 Discrete N: discrete, unordered values. N is the maximum
values
 A comma-separated list of names: discrete values
 [ordered] can be used to indicate that the ordering
 Example: grade: [ordered] low, medium, high.
 Label
 Ignore
48
Preparing data for See5
 Isi dari file hypothyroid.data
 Isi dari file hypothyroid.test sama seperti hypothyroid.data
49
See5 GUI
50
Constructing Classifier
 Classifier construction
options:
51
Decision Tree
52
Decision Tree
53
Decision Tree Evaluation
Num. of leaves: 14
Misclassified: 7
Confusion matrix
54
Tree Construction Options
 Discrete value subsets
 Group attribute values into subsets and each subtree is
associated with a subset rather than with a single value.
 Example:
 referral source in {WEST,STMW,SVHC,SVI,SVHD}: primary
(4.9/0.8)
55
Tree Construction Options
 Rulesets
 generate classifiers called rulesets that consist of unordered
collections of (relatively) simple if-then rules.
 Example:
56
 Each rule consists of
 A rule number
 Statistics (n, lift x)
or (n/m, lift x)
 One or more conditions
 A class predicted by
the rule
 A confidence
 Laplace ratio
(n-m+1)/(n+2)
57
Tree Construction Options
 Boosting
 generate several classifiers
(either decision trees or
rulesets) rather than just
one.
 When a new case is to be
classified, each classifier
votes for its predicted class
and the votes are counted
to determine the final
class.
 Example:
 Boost: 10 trials
58
Tree Construction Options
 Winnow
 To choose a subset of the attributes that will be used to
construct the decision tree or ruleset.
 Example:
59
Using Classifier
 Used to predict the classes to which new cases belong.
 Since the values of all attributes may not be needed, the
attribute values requested will depend on the case itself.
 Example:

More Related Content

Similar to Classification

Basic Classification.pptx
Basic Classification.pptxBasic Classification.pptx
Basic Classification.pptx
PerumalPitchandi
 
Dr. Oner CelepcikayITS 632ITS 632Week 4Classification
Dr. Oner CelepcikayITS 632ITS 632Week 4ClassificationDr. Oner CelepcikayITS 632ITS 632Week 4Classification
Dr. Oner CelepcikayITS 632ITS 632Week 4Classification
DustiBuckner14
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
Luis Goldster
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
James Wong
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
Fraboni Ec
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
Tony Nguyen
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
Young Alista
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
David Hoen
 
Datamining withnb
Datamining withnbDatamining withnb
Datamining withnb
Harry Potter
 
Data Mining Lecture_11.pptx
Data Mining Lecture_11.pptxData Mining Lecture_11.pptx
Data Mining Lecture_11.pptx
Subrata Kumer Paul
 
Slide3.ppt
Slide3.pptSlide3.ppt
Slide3.ppt
butest
 
NN Classififcation Neural Network NN.pptx
NN Classififcation   Neural Network NN.pptxNN Classififcation   Neural Network NN.pptx
NN Classififcation Neural Network NN.pptx
cmpt cmpt
 
chap4_basic_classification(2).ppt
chap4_basic_classification(2).pptchap4_basic_classification(2).ppt
chap4_basic_classification(2).ppt
ssuserfdf196
 
chap4_basic_classification.ppt
chap4_basic_classification.pptchap4_basic_classification.ppt
chap4_basic_classification.ppt
BantiParsaniya
 
Decision tree
Decision treeDecision tree
Decision tree
Venkata Reddy Konasani
 
Classification techniques in data mining
Classification techniques in data miningClassification techniques in data mining
Classification techniques in data mining
Kamal Acharya
 
Mayo_tutorial_July14.ppt
Mayo_tutorial_July14.pptMayo_tutorial_July14.ppt
Mayo_tutorial_July14.ppt
ImXaib
 
Properties of Normal Distribution
Properties of Normal DistributionProperties of Normal Distribution
Properties of Normal Distribution
Dr. Lokesh Gupta
 
Math Review.pdf
Math Review.pdfMath Review.pdf
Math Review.pdf
ponsia1
 
Whole Numbers, Fractions, Decimals, Ratios & Percents, Statistics, Real Numbe...
Whole Numbers, Fractions, Decimals, Ratios & Percents, Statistics, Real Numbe...Whole Numbers, Fractions, Decimals, Ratios & Percents, Statistics, Real Numbe...
Whole Numbers, Fractions, Decimals, Ratios & Percents, Statistics, Real Numbe...
REYBETH RACELIS
 

Similar to Classification (20)

Basic Classification.pptx
Basic Classification.pptxBasic Classification.pptx
Basic Classification.pptx
 
Dr. Oner CelepcikayITS 632ITS 632Week 4Classification
Dr. Oner CelepcikayITS 632ITS 632Week 4ClassificationDr. Oner CelepcikayITS 632ITS 632Week 4Classification
Dr. Oner CelepcikayITS 632ITS 632Week 4Classification
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
 
Datamining with nb
Datamining with nbDatamining with nb
Datamining with nb
 
Datamining withnb
Datamining withnbDatamining withnb
Datamining withnb
 
Data Mining Lecture_11.pptx
Data Mining Lecture_11.pptxData Mining Lecture_11.pptx
Data Mining Lecture_11.pptx
 
Slide3.ppt
Slide3.pptSlide3.ppt
Slide3.ppt
 
NN Classififcation Neural Network NN.pptx
NN Classififcation   Neural Network NN.pptxNN Classififcation   Neural Network NN.pptx
NN Classififcation Neural Network NN.pptx
 
chap4_basic_classification(2).ppt
chap4_basic_classification(2).pptchap4_basic_classification(2).ppt
chap4_basic_classification(2).ppt
 
chap4_basic_classification.ppt
chap4_basic_classification.pptchap4_basic_classification.ppt
chap4_basic_classification.ppt
 
Decision tree
Decision treeDecision tree
Decision tree
 
Classification techniques in data mining
Classification techniques in data miningClassification techniques in data mining
Classification techniques in data mining
 
Mayo_tutorial_July14.ppt
Mayo_tutorial_July14.pptMayo_tutorial_July14.ppt
Mayo_tutorial_July14.ppt
 
Properties of Normal Distribution
Properties of Normal DistributionProperties of Normal Distribution
Properties of Normal Distribution
 
Math Review.pdf
Math Review.pdfMath Review.pdf
Math Review.pdf
 
Whole Numbers, Fractions, Decimals, Ratios & Percents, Statistics, Real Numbe...
Whole Numbers, Fractions, Decimals, Ratios & Percents, Statistics, Real Numbe...Whole Numbers, Fractions, Decimals, Ratios & Percents, Statistics, Real Numbe...
Whole Numbers, Fractions, Decimals, Ratios & Percents, Statistics, Real Numbe...
 

More from AuliyaRahman9

Rekayasa-Perangkat-Lunak-Pertemuan-1.ppt
Rekayasa-Perangkat-Lunak-Pertemuan-1.pptRekayasa-Perangkat-Lunak-Pertemuan-1.ppt
Rekayasa-Perangkat-Lunak-Pertemuan-1.ppt
AuliyaRahman9
 
Pertemuan 5
Pertemuan 5Pertemuan 5
Pertemuan 5
AuliyaRahman9
 
Pertemuan 4
Pertemuan 4Pertemuan 4
Pertemuan 4
AuliyaRahman9
 
Praktikum basis data 2
Praktikum basis data 2Praktikum basis data 2
Praktikum basis data 2
AuliyaRahman9
 
Data preparation
Data preparationData preparation
Data preparation
AuliyaRahman9
 
Pertemuan 2 Teknologi dan Infrastruktur E-Business
Pertemuan 2 Teknologi dan Infrastruktur E-BusinessPertemuan 2 Teknologi dan Infrastruktur E-Business
Pertemuan 2 Teknologi dan Infrastruktur E-Business
AuliyaRahman9
 
Pertemuan 1 - Teknologi dan Infrastruktur E-business
Pertemuan 1 - Teknologi dan Infrastruktur E-businessPertemuan 1 - Teknologi dan Infrastruktur E-business
Pertemuan 1 - Teknologi dan Infrastruktur E-business
AuliyaRahman9
 

More from AuliyaRahman9 (7)

Rekayasa-Perangkat-Lunak-Pertemuan-1.ppt
Rekayasa-Perangkat-Lunak-Pertemuan-1.pptRekayasa-Perangkat-Lunak-Pertemuan-1.ppt
Rekayasa-Perangkat-Lunak-Pertemuan-1.ppt
 
Pertemuan 5
Pertemuan 5Pertemuan 5
Pertemuan 5
 
Pertemuan 4
Pertemuan 4Pertemuan 4
Pertemuan 4
 
Praktikum basis data 2
Praktikum basis data 2Praktikum basis data 2
Praktikum basis data 2
 
Data preparation
Data preparationData preparation
Data preparation
 
Pertemuan 2 Teknologi dan Infrastruktur E-Business
Pertemuan 2 Teknologi dan Infrastruktur E-BusinessPertemuan 2 Teknologi dan Infrastruktur E-Business
Pertemuan 2 Teknologi dan Infrastruktur E-Business
 
Pertemuan 1 - Teknologi dan Infrastruktur E-business
Pertemuan 1 - Teknologi dan Infrastruktur E-businessPertemuan 1 - Teknologi dan Infrastruktur E-business
Pertemuan 1 - Teknologi dan Infrastruktur E-business
 

Recently uploaded

Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
MysoreMuleSoftMeetup
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
PsychoTech Services
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
math operations ued in python and all used
math operations ued in python and all usedmath operations ued in python and all used
math operations ued in python and all used
ssuser13ffe4
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Leena Ghag-Sakpal
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
Wahiba Chair Training & Consulting
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
BoudhayanBhattachari
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
EduSkills OECD
 

Recently uploaded (20)

Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
math operations ued in python and all used
math operations ued in python and all usedmath operations ued in python and all used
math operations ued in python and all used
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
 

Classification

  • 2. 2 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.
  • 3. 3 Illustrating Classification Task Apply Model Induction Deduction Learn Model Model 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 10 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 ? 10 Test Set Learning algorithm Training Set
  • 4. 4 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
  • 5. 5 Classification Techniques  Decision Tree based Methods  Rule-based Methods  Memory based reasoning  Neural Networks  Naïve Bayes and Bayesian Belief Networks  Support Vector Machines
  • 6. 6 Example of a Decision Tree Tid Refund Marital Status Taxable Income Cheat 1 Yes Single 125K No 2 No Married 100K No 3 No Single 70K No 4 Yes Married 120K No 5 No Divorced 95K Yes 6 No Married 60K No 7 Yes Divorced 220K No 8 No Single 85K Yes 9 No Married 75K No 10 No Single 90K Yes 10 Refund MarSt TaxInc YESNO NO NO Yes No MarriedSingle, Divorced < 80K > 80K Splitting Attributes Training Data Model: Decision Tree
  • 7. 7 Another Example of Decision Tree Tid Refund Marital Status Taxable Income Cheat 1 Yes Single 125K No 2 No Married 100K No 3 No Single 70K No 4 Yes Married 120K No 5 No Divorced 95K Yes 6 No Married 60K No 7 Yes Divorced 220K No 8 No Single 85K Yes 9 No Married 75K No 10 No Single 90K Yes 10 MarSt Refund TaxInc YESNO NO NO Yes No Married Single, Divorced < 80K > 80K There could be more than one tree that fits the same data!
  • 8. 8 Decision Tree Classification Task Apply Model Induction Deduction Learn Model Model 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 10 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 ? 10 Test Set Tree Induction algorithm Training Set Decision Tree
  • 9. 9 Apply Model to Test Data Refund MarSt TaxInc YESNO NO NO Yes No MarriedSingle, Divorced < 80K > 80K Refund Marital Status Taxable Income Cheat No Married 80K ? 10 Test Data Start from the root of tree.
  • 10. 10 Apply Model to Test Data Refund MarSt TaxInc YESNO NO NO Yes No MarriedSingle, Divorced < 80K > 80K Refund Marital Status Taxable Income Cheat No Married 80K ? 10 Test Data
  • 11. 11 Apply Model to Test Data Refund MarSt TaxInc YESNO NO NO Yes No MarriedSingle, Divorced < 80K > 80K Refund Marital Status Taxable Income Cheat No Married 80K ? 10 Test Data
  • 12. 12 Apply Model to Test Data Refund MarSt TaxInc YESNO NO NO Yes No MarriedSingle, Divorced < 80K > 80K Refund Marital Status Taxable Income Cheat No Married 80K ? 10 Test Data
  • 13. 13 Apply Model to Test Data Refund MarSt TaxInc YESNO NO NO Yes No MarriedSingle, Divorced < 80K > 80K Refund Marital Status Taxable Income Cheat No Married 80K ? 10 Test Data
  • 14. 14 Apply Model to Test Data Refund MarSt TaxInc YESNO NO NO Yes No MarriedSingle, Divorced < 80K > 80K Refund Marital Status Taxable Income Cheat No Married 80K ? 10 Test Data Assign Cheat to “No”
  • 15. 15 Decision Tree Classification Task Apply Model Induction Deduction Learn Model Model 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 10 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 ? 10 Test Set Tree Induction algorithm Training Set Decision Tree
  • 16. 16 Decision Tree Induction  Many Algorithms:  Hunt’s Algorithm (one of the earliest)  CART  ID3, C4.5  SLIQ,SPRINT
  • 17. 17 General Structure of Hunt’s Algorithm  Let Dt be the set of training records that reach a node t  General Procedure:  If Dt contains records that belong the same class yt, then t is a leaf node labeled as yt  If Dt is an empty set, then t is a leaf node labeled by the default class, yd  If Dt contains records that belong to more than one class, use an attribute test to split the data into smaller subsets. Recursively apply the procedure to each subset. Tid Refund Marital Status Taxable Income Cheat 1 Yes Single 125K No 2 No Married 100K No 3 No Single 70K No 4 Yes Married 120K No 5 No Divorced 95K Yes 6 No Married 60K No 7 Yes Divorced 220K No 8 No Single 85K Yes 9 No Married 75K No 10 No Single 90K Yes 10 Dt ?
  • 18. 18 Hunt’s Algorithm Don’t Cheat Refund Don’t Cheat Don’t Cheat Yes No Refund Don’t Cheat Yes No Marital Status Don’t Cheat Cheat Single, Divorced Married Taxable Income Don’t Cheat < 80K >= 80K Refund Don’t Cheat Yes No Marital Status Don’t Cheat Cheat Single, Divorced Married Tid Refund Marital Status Taxable Income Cheat 1 Yes Single 125K No 2 No Married 100K No 3 No Single 70K No 4 Yes Married 120K No 5 No Divorced 95K Yes 6 No Married 60K No 7 Yes Divorced 220K No 8 No Single 85K Yes 9 No Married 75K No 10 No Single 90K Yes 10
  • 19. 19 Tree Induction  Greedy strategy.  Split the records based on an attribute test that optimizes certain criterion.  Issues  Determine how to split the records  How to specify the attribute test condition?  How to determine the best split?  Determine when to stop splitting
  • 20. 20 How to Specify Test Condition?  Depends on attribute types  Nominal  Ordinal  Continuous  Depends on number of ways to split  2-way split  Multi-way split
  • 21. 21 Splitting Based on Nominal Attributes  Multi-way split: Use as many partitions as distinct values.  Binary split: Divides values into two subsets. Need to find optimal partitioning. CarType Family Sports Luxury CarType {Family, Luxury} {Sports} CarType {Sports, Luxury} {Family} OR
  • 22. 22  Multi-way split: Use as many partitions as distinct values.  Binary split: Divides values into two subsets. Need to find optimal partitioning.  What about this split? Splitting Based on Ordinal Attributes Size Small Medium Large Size {Medium, Large} {Small}Size {Small, Medium} {Large} OR Size {Small, Large} {Medium}
  • 23. 23 Splitting Based on Continuous Attributes  Different ways of handling  Discretization to form an ordinal categorical attribute  Static – discretize once at the beginning  Dynamic – ranges can be found by equal interval bucketing, equal frequency bucketing (percentiles), or clustering.  Binary Decision: (A < v) or (A  v)  consider all possible splits and finds the best cut  can be more compute intensive
  • 24. 24 Splitting Based on Continuous Attributes Taxable Income > 80K? Yes No Taxable Income? (i) Binary split (ii) Multi-way split < 10K [10K,25K) [25K,50K) [50K,80K) > 80K
  • 25. 25 How to determine the Best Split Own Car? C0: 6 C1: 4 C0: 4 C1: 6 C0: 1 C1: 3 C0: 8 C1: 0 C0: 1 C1: 7 Car Type? C0: 1 C1: 0 C0: 1 C1: 0 C0: 0 C1: 1 Student ID? ... Yes No Family Sports Luxury c1 c10 c20 C0: 0 C1: 1 ... c11 Before Splitting: 10 records of class 0, 10 records of class 1 Which test condition is the best?
  • 26. 26 How to determine the Best Split  Greedy approach:  Nodes with homogeneous class distribution are preferred  Need a measure of node impurity: C0: 5 C1: 5 C0: 9 C1: 1 Non-homogeneous, High degree of impurity Homogeneous, Low degree of impurity
  • 27. 27 Measures of Node Impurity  Gini Index  Entropy  Misclassification error
  • 28. 28 Measure of Impurity: GINI  Gini Index for a given node t : (NOTE: p( j | t) is the relative frequency of class j at node t).  Maximum (1 - 1/nc) when records are equally distributed among all classes, implying least interesting information  Minimum (0.0) when all records belong to one class, implying most interesting information  j tjptGINI 2 )]|([1)( C1 0 C2 6 Gini=0.000 C1 2 C2 4 Gini=0.444 C1 3 C2 3 Gini=0.500 C1 1 C2 5 Gini=0.278
  • 29. 29 Examples for computing GINI C1 0 C2 6 C1 2 C2 4 C1 1 C2 5 P(C1) = 0/6 = 0 P(C2) = 6/6 = 1 Gini = 1 – P(C1)2 – P(C2)2 = 1 – 0 – 1 = 0  j tjptGINI 2 )]|([1)( P(C1) = 1/6 P(C2) = 5/6 Gini = 1 – (1/6)2 – (5/6)2 = 0.278 P(C1) = 2/6 P(C2) = 4/6 Gini = 1 – (2/6)2 – (4/6)2 = 0.444
  • 30. 30 Alternative Splitting Criteria based on INFO  Entropy at a given node t: (NOTE: p( j | t) is the relative frequency of class j at node t).  Measures homogeneity of a node.  Maximum (log nc) when records are equally distributed among all classes implying least information  Minimum (0.0) when all records belong to one class, implying most information  Entropy based computations are similar to the GINI index computations  j tjptjptEntropy )|(log)|()(
  • 31. 31 Examples for computing Entropy C1 0 C2 6 C1 2 C2 4 C1 1 C2 5 P(C1) = 0/6 = 0 P(C2) = 6/6 = 1 Entropy = – 0 log 0 – 1 log 1 = – 0 – 0 = 0 P(C1) = 1/6 P(C2) = 5/6 Entropy = – (1/6) log2 (1/6) – (5/6) log2 (5/6) = 0.65 P(C1) = 2/6 P(C2) = 4/6 Entropy = – (2/6) log2 (2/6) – (4/6) log2 (4/6) = 0.92  j tjptjptEntropy )|(log)|()( 2
  • 32. 32 Splitting Criteria based on Classification Error  Classification error at a node t :  Measures misclassification error made by a node.  Maximum (1 - 1/nc) when records are equally distributed among all classes, implying least interesting information  Minimum (0.0) when all records belong to one class, implying most interesting information )|(max1)( tiPtError i 
  • 33. 33 Examples for Computing Error C1 0 C2 6 C1 2 C2 4 C1 1 C2 5 P(C1) = 0/6 = 0 P(C2) = 6/6 = 1 Error = 1 – max (0, 1) = 1 – 1 = 0 P(C1) = 1/6 P(C2) = 5/6 Error = 1 – max (1/6, 5/6) = 1 – 5/6 = 1/6 P(C1) = 2/6 P(C2) = 4/6 Error = 1 – max (2/6, 4/6) = 1 – 4/6 = 1/3 )|(max1)( tiPtError i 
  • 34. 34 Example: Splitting Based on ENTROPY  Information Gain: Parent Node, p is split into k partitions; ni is number of records in partition i  Measures Reduction in Entropy achieved because of the split. Choose the split that achieves most reduction (maximizes GAIN)  Goal: maximize the GAIN  Used in ID3 and C4.5  Disadvantage: Tends to prefer splits that result in large number of partitions, each being small but pure.          k i i split iEntropy n n pEntropyGAIN 1 )()(
  • 35. 35 Computing GAIN Tid Refund Marital Status Taxable Income Class 1 Yes Single 125K No 2 No Married 100K No 3 No Single 70K No 4 Yes Married 120K No 5 No Divorced 95K Yes 6 No Married 60K No 7 Yes Divorced 220K No 8 No Single 85K Yes 9 No Married 75K No 10 ? Single 90K Yes 10 Class = Yes Class = No Refund=Yes 0 3 Refund=No 2 4 Refund=? 1 0 Split on Refund: Entropy(Refund=Yes) = 0 Entropy(Refund=No) = -(2/6)log(2/6) – (4/6)log(4/6) = 0.9183 Entropy(Children) = 0.3 (0) + 0.6 (0.9183) = 0.551 Gain = 0.9  (0.8813 – 0.551) = 0.3303 Missing value Before Splitting: Entropy(Parent) = -0.3 log(0.3)-(0.7)log(0.7) = 0.8813
  • 36. 36 Splitting Based on ENTROPY  Gain Ratio: Parent Node, p is split into k partitions ni is the number of records in partition i  Adjusts Information Gain by the entropy of the partitioning (SplitINFO). Higher entropy partitioning (large number of small partitions) is penalized!  Used in C4.5  Designed to overcome the disadvantage of Information Gain SplitINFO GAIN GainRATIO Split split     k i ii n n n n SplitINFO 1 log
  • 37. 37 Stopping Criteria for Tree Induction  Stop expanding a node when all the records belong to the same class  Stop expanding a node when all the records have similar attribute values  Early termination
  • 38. 38 Decision Tree Based Classification  Advantages:  Inexpensive to construct  Extremely fast at classifying unknown records  Easy to interpret for small-sized trees  Accuracy is comparable to other classification techniques for many simple data sets
  • 39. 39 Example: C4.5  Simple depth-first construction.  Uses Information Gain  Sorts Continuous Attributes at each node.  Needs entire data to fit in memory.  Unsuitable for Large Datasets.  Needs out-of-core sorting.  You can download the software from: http://www.cse.unsw.edu.au/~quinlan/c4.5r8.tar.gz
  • 41. 41 What is See5  Data mining software for classification  Technique: decision tree  Decision tree algorithm: C5.0
  • 42. 42 Sample applications using See5  Predicting Magnetic Properties of Crystals  To develop rules that predict whether a substance is magnetic or not (National Research Council Canada)  24641 cases, 120 attributes/case  Profiling High Income Earners from Census Data  To predict whether the individual's income is above or below $50,000 (US Census Bureau Database)  200,000 cases, 40 attributes/cases (7 numeric, 33 nominal atts)
  • 45. 45 Preparing data for See5  Files used in See5 have names of the form filestem.extension
  • 46. 46 Preparing data for See5  Content of a hypothyroid.names file
  • 47. 47 Preparing data for See5  Types of attributes  Continuous: numeric values  Date: dates in the form YYYY/MM/DD or YYYY-MM-DD  Time: times in the form HH:MM:SS  Timestamp: times in the form YYYY/MM/DD HH:MM:SS  Discrete N: discrete, unordered values. N is the maximum values  A comma-separated list of names: discrete values  [ordered] can be used to indicate that the ordering  Example: grade: [ordered] low, medium, high.  Label  Ignore
  • 48. 48 Preparing data for See5  Isi dari file hypothyroid.data  Isi dari file hypothyroid.test sama seperti hypothyroid.data
  • 53. 53 Decision Tree Evaluation Num. of leaves: 14 Misclassified: 7 Confusion matrix
  • 54. 54 Tree Construction Options  Discrete value subsets  Group attribute values into subsets and each subtree is associated with a subset rather than with a single value.  Example:  referral source in {WEST,STMW,SVHC,SVI,SVHD}: primary (4.9/0.8)
  • 55. 55 Tree Construction Options  Rulesets  generate classifiers called rulesets that consist of unordered collections of (relatively) simple if-then rules.  Example:
  • 56. 56  Each rule consists of  A rule number  Statistics (n, lift x) or (n/m, lift x)  One or more conditions  A class predicted by the rule  A confidence  Laplace ratio (n-m+1)/(n+2)
  • 57. 57 Tree Construction Options  Boosting  generate several classifiers (either decision trees or rulesets) rather than just one.  When a new case is to be classified, each classifier votes for its predicted class and the votes are counted to determine the final class.  Example:  Boost: 10 trials
  • 58. 58 Tree Construction Options  Winnow  To choose a subset of the attributes that will be used to construct the decision tree or ruleset.  Example:
  • 59. 59 Using Classifier  Used to predict the classes to which new cases belong.  Since the values of all attributes may not be needed, the attribute values requested will depend on the case itself.  Example: