python 3.x - scikit - Se dice que ''Shuffle'' es un parámetro inválido para model_selection.train_test_split
sklearn fit (1)
Shuffle se ha introducido en 0.19, probablemente estés utilizando 0.18 o más que estaba siguiendo API diferente .
Entonces, cuando intento ejecutar algún código con la siguiente línea:
X_train, X_test, Y_train, Y_test=train_test_split(X_features, Y_feature, test_size=0.2, random_state=42, stratify=None, shuffle=False)
Obtuve el siguiente error:
TypeError: Invalid parameters passed: {''shuffle'': False}
Yet, the ''shuffle'' parameter is listed on scikitlearn website (http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.train_test_split.html).
Probé un orden diferente para los parámetros, dividiendo X e Y por separado, pero eso no arrojó ningún resultado. ¿Hay alguna otra manera en la que pueda evitar que train_test_split aleatorice los datos?