Cpp ML Library  1.0.0
A library of Machine Learning Algorithmns seen from the Udemy course Machine Learning A to Z.
Classes | Public Member Functions | List of all members
RandomForestClassifier Class Reference

Implements a Random Forest Classifier. More...

#include <RandomForestClassifier.hpp>

Public Member Functions

 RandomForestClassifier (int n_estimators=10, int max_depth=5, int min_samples_split=2, int max_features=-1)
 Constructs a RandomForestClassifier. More...
 
 ~RandomForestClassifier ()=default
 Destructor for RandomForestClassifier.
 
void fit (const std::vector< std::vector< double >> &X, const std::vector< int > &y)
 Fits the model to the training data. More...
 
std::vector< int > predict (const std::vector< std::vector< double >> &X) const
 Predicts class labels for given input data. More...
 

Detailed Description

Implements a Random Forest Classifier.

Constructor & Destructor Documentation

◆ RandomForestClassifier()

RandomForestClassifier::RandomForestClassifier ( int  n_estimators = 10,
int  max_depth = 5,
int  min_samples_split = 2,
int  max_features = -1 
)

Constructs a RandomForestClassifier.

Parameters
n_estimatorsThe number of trees in the forest.
max_depthThe maximum depth of the tree.
min_samples_splitThe minimum number of samples required to split an internal node.
max_featuresThe number of features to consider when looking for the best split. Defaults to sqrt(num_features).

Member Function Documentation

◆ fit()

void RandomForestClassifier::fit ( const std::vector< std::vector< double >> &  X,
const std::vector< int > &  y 
)

Fits the model to the training data.

Parameters
XA vector of feature vectors.
yA vector of target class labels.

◆ predict()

std::vector< int > RandomForestClassifier::predict ( const std::vector< std::vector< double >> &  X) const

Predicts class labels for given input data.

Parameters
XA vector of feature vectors.
Returns
A vector of predicted class labels.

The documentation for this class was generated from the following file: