RandomForestClassifier constructor
To manually instantiate the RandomForestClassifier. The parameters are lifted directly from scikit-learn. See the attributes here: https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestClassifier.html
Implementation
RandomForestClassifier(this.classes, this.dtrees){
initDtrees(dtrees);
}