Can anyone tell me why we set random state to zero in splitting train and test set.
X_train, X_test, y_train, y_test = \\ train_test_split(X, y, test_size
We used the random_state parameter for reproducibility of the initial shuffling of training datasets after each epoch.