1 / 8

Classification by Association Rules: Use Minimum Set of Rules

Classification by Association Rules: Use Minimum Set of Rules. Jianyu Yang December 10, 2003. Classification System. Problem: (A, B, C) => y | n ? Decision tree learning, etc. Association rules: X => c X : antecedent, c : consequent Support & Confidence Algorithms: Apriori.

dunn
Télécharger la présentation

Classification by Association Rules: Use Minimum Set of Rules

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Classification by Association Rules:Use Minimum Set of Rules Jianyu Yang December 10, 2003

  2. Classification System • Problem: (A, B, C) => y | n ? • Decision tree learning, etc. • Association rules: X => c • X: antecedent, c : consequent • Support & Confidence • Algorithms: Apriori

  3. Association Rules: Issues • Too many rules • Inefficient • Overfitting • Applying order matters • Example: (A, B) => y, (C) => n • Minimum Support (minsup) • Minimum Confidence (minconf )

  4. Ideas: No redundant rules (A, B) =>y (A, B, C) =>y Total order of rules “Occum’s razor”: favor general rules Pre-pruning (A, B) =>y (A, B, D)=>? 1 L1 = {large 1-ruleitems}; 2 CAR1 = genRules(L1) 3 pruneSet(L1) 4 for (k = 2; Lk-1 ≠ ; k++) do begin 5 Ck = apriori-gen(Lk-1); 6 forall training instances tD do begin 7 Ct = subset(Ck, t) 8 forall candidates cCt 9 Ci .count++ for class label i 10 end 11 Lk = {cCt| ci .count ≥ minsup for any class i} 12 CARk = genRules(Lk) 13 pruneSet(Lk) 14 end 15 CARs = UNIONk(CARk) MSR Algorithm

  5. minsup

  6. minconf

  7. Results: Error Rate Comparison

  8. Conclusions • A new algorithm was designed to build a classification system using a minimum set of association rules. • In general, low minsup and high minconf produce low error rates. • Experiments on 26 benchmark datasets showed lower error rates in 17 datasets thanC4.5 (R8), in 16 than CBA (v2.0). • The new algorithm does not always produce lower error rates than other algorithms.

More Related