When I use train_test_splid
as:
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test =train_test_split(X, Y, test_size = 0.9)
If I do not set specific random_state
. how to get the current random seed the program use?