object
random_forest
Random Forest classifier using C4.5 decision trees as base learners. Builds an ensemble of decision trees trained on bootstrap samples with random feature subsets and combines their predictions through majority voting.
logtalk_load(random_forest(loader))static, context_switching_calls
Algorithm: Random Forest is an ensemble learning method that constructs multiple decision trees during training and outputs the class that is the mode of the classes predicted by individual trees.
Bootstrap sampling: Each tree is trained on a bootstrap sample (random sample with replacement) of the training data.
Feature randomization: At each tree, a random subset of features is selected. The default number of features is sqrt(total_features).
Classifier representation: The learned classifier is represented by default as a
rf_classifier(Trees, ClassValues, Options)term.
Public predicates
learn/3
Learns a classifier from the given dataset object using the specified options.
staticlearn(Dataset,Classifier,Options)learn(+object_identifier,-compound,+list(compound)) - onepredict_probabilities/3
Predicts class probabilities for a new instance using the learned classifier. Returns a list of Class-Probability pairs sorted by descending probability. The instance is a list of Attribute-Value pairs.
staticpredict_probabilities(Classifier,Instance,Probabilities)predict_probabilities(+compound,+list,-list) - oneProtected predicates
(no local declarations; see entity ancestors if any)
Private predicates
(no local declarations; see entity ancestors if any)
Operators
(none)
See also
dataset_protocol, c45, isolation_forest, knn, naive_bayes, nearest_centroid, ada_boost