Random_state's contribution to accuracy
问题 Okay, this is interesting.. I executed the same code a couple of times and each time I got a different accuracy_score . I figured that I was not using any random_state value while train_test splitting . so I used random_state=0 and got consistent Accuracy_score of 82%. but... then I thought to give it a try with different random_state number and I set random_state=128 and Accuracy_score becomes 84%. Now I need to understand why is that and how random_state affects the accuracy of the model.