Following from the discussion here confused about random_state in decision tree of scikit learn
Since I am setting my random_state to be 1, I do have consistent metrics because I am generating the same tree every-time. But when random_state is set to default -- > none, then the different trees that are generated each time have different performance metrics, some are better than others and some are worse. How is that we then get the best possible metric or in other words how to find out what int value to be set for random-state that will give me the tree that has the best accuracy and kappa stats.