X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=folded-ctf.git;a=blobdiff_plain;f=decision_tree.h;h=1601836e9e07f725976dfe7041d5fff8315bcd26;hp=70fdcad75a3a606be508a66b86217d59c6dd4e33;hb=5b78a555f6c7ff20a71d0520db63bc43e69e1f41;hpb=a44d56305517dddd36027c2a84693f2785fd019a diff --git a/decision_tree.h b/decision_tree.h index 70fdcad..1601836 100644 --- a/decision_tree.h +++ b/decision_tree.h @@ -18,6 +18,16 @@ // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// +/* + + An implementation of the classifier with a decision tree. Each node + simply thresholds one of the component, and is chosen for maximum + loss reduction locally during training. The leaves are labelled with + the classifier response, which is chosen again for maximum loss + reduction. + + */ + #ifndef DECISION_TREE_H #define DECISION_TREE_H