I am looking at the AUCs of three RandomForestClassifier models. Before this, I split my data using test and train using a random_state.
When I change the random_state for the data split, the AUCs changes. Is this supposed to happen or does it mean my model most likely needs parameter tuning?
Here are the AUCs using a random_state of 1 and then a random_state of 2.
Model A. 0.76 -> 0.71 Model B. 0.73 -> 0.69 Model C. 0.57 -> 0.58
Thanks.