DecisionTreeClassifier constructor
DecisionTreeClassifier()
To manually instantiate the DecisionTreeClassifier. The parameters are lifted directly from scikit-learn. See the attributes here: https://scikit-learn.org/stable/modules/generated/sklearn.tree.DecisionTreeClassifier.html
Implementation
DecisionTreeClassifier(this.childrenLeft, this.childrenRight, this.threshold,
this.features, this.values, this.classes);