# Implementation of Random Forest Classifier The RandomForestClassifier class grows a number of trees using the DecisionTreeClassifier class. The training data for growing each tree is obtained using bootstrap sampling from the training data passed as input to the fit member function of this class. ```{eval-rst} .. doxygenclass:: ml::RandomForestClassifier :members: ```