How does predict work for classification tree algorithm?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hadas Lapid
am 14 Nov. 2013
Beantwortet: Hadas Lapid
am 17 Nov. 2013
Following classification with ClassificationTree.fit I get an object obj which contains all model parameters. Then when using predict(data,model) I try it on new data. Question is that I need to translate the predict code into human language, in order to transform it into c code. The code does Not support predict. Can anyone direct me to the full algorithm predict performs? (I couldn't figure it out from predict.m directly..) Many many thanks Hadas
0 Kommentare
Akzeptierte Antwort
Shashank Prasanna
am 14 Nov. 2013
Bearbeitet: Shashank Prasanna
am 14 Nov. 2013
Type:
>> view(obj)
you can visualize the tree.
predict generates predictions by following the branches of tree until it reaches a leaf node or a missing value. If predict reaches a leaf node, it returns the classification of that node.
This information is also available in the documentation, scroll down to Algorithm section:
Also here is some theory that you may find useful:
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Naive Bayes finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!