-
Hi! I'm using Random Forest Classifier to train an image segmentation model, but even setting the random_state variable, which according to the manual should give deterministic results, I get stochastic results that change every time I use the model to train and predict the same data set. In addition to random_state, I'm using the bootstrap flag and oob_score set to True. Is there any way to get deterministic results each time I run this model? I also found some good discussions on these two forums: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I think this is something that we are aware: #12188 (comment) This is coming from tie-breaking. |
Beta Was this translation helpful? Give feedback.
-
Use top of your code for producing same results,
|
Beta Was this translation helpful? Give feedback.
I think this is something that we are aware: #12188 (comment)
This is coming from tie-breaking.