Advantages and Disadvantages of Rule-Based Classifiers

Advantages

Rule-based classifier has the following advantages.

1. Has characteristics quite similar to decision trees

a. As highly expressive as decision trees

b. Easy to interpret

C. Performance comparable to decision trees

d. Can handle redundant attributes benight

2. Better suited for handling imbalanced classes

Disadvantages

The rule-based classifier has the following disadvantages

1. Harder to handle missing values in the test set

2. If the ruleset is large then it is complex to apply the rule for classification.

3.  For large training set the large number of rules generated requires a large amount of memory. 

4. During rule generation extra computation is needed to simplify and purn the rules.

Comments

Popular posts from this blog

Discuss classification or taxonomy of virtualization at different levels.

What is RMI? Discuss stub and skeleton. Explain its role in creating distributed applications.

Suppose that a data warehouse consists of the three dimensions time, doctor, and patient, and the two measures count and charge, where a charge is the fee that a doctor charges a patient for a visit. a) Draw a schema diagram for the above data warehouse using one of the schemas. [star, snowflake, fact constellation] b) Starting with the base cuboid [day, doctor, patient], what specific OLAP operations should be performed in order to list the total fee collected by each doctor in 2004? c) To obtain the same list, write an SQL query assuming the data are stored in a relational database with the schema fee (day, month, year, doctor, hospital, patient, count, charge)