I am using a classification tree from sklearn and when I have the the model train twice using the same data, and predict with the same test data, I am getting diffe
sklearn
I don't know anything about sklearn but...
I guess DecisionTreeClassifier has some internal state, create by fit, which only gets updated/extended.
DecisionTreeClassifier
fit
You should create a new one?