Alternative Classification Techniques Flashcards
6 ALTERNATIVE CLASSIFICATION TECHNIQUE
- Rule-Based Classifier
- Nearest Neighbor Classifier
- Naïve Bayes Classifier
- Artificial Neural Network
- Support Vector Machines
- Ensemble Method
classify record by using a collection of “if…then..” rules.
Rule-Based Classifier
These rules are ranked according to their priority.
Ordered Rule Set
an ordered rule set is known as this.
Decision List
2 RULE ORDERING SCHEMES
- Rule-based Ordering
- Class-based Ordering
an ordering scheme where individual rules are ranked based on their quality.
Rule-based Ordering
an ordering scheme where rules that belong to the same class appear together.
Class-based Ordering
fractions of records that justify the antecedent of a rule.
Coverage of a Rule
fraction of records that satisfy both the antecedent and consequent of a rule.
Accuracy of a Rule
2 Characteristic of Rule-Based Classifier
- Mutually Exclusive Rules
- Exhaustive Rules
2 Effect of Rule Simplification:
- Rules are no longer mutually exclusive
- Rules are no longer exhaustive
5 Advantages of Rule-Based Classifier
- Highly expressive as a decision tree
- Easy to interpret
- Easy to generate
- Can classify new instances rapidly
- Performance comparable to decision tree
are lazy learners, it does not build model explicitly, needs to store all training data, and classifying unknown records are expensive.
Nearest Neighbor Classifier
3 Requirements for Nearest Neighbor Classifier
- Set of stored records
- Distance Metric to compute distance between records
- The value of k, the number of nearest neighbors to retrieve.
3 Ways to Identify Unknown Values in Nearest Neighbor Classifier
1.Compute distance to other records
- Identify k nearest neighbor
- Use class label of nearest neighbor (majority vote)