Es scheint, dass sich das Modul von train_test_split von 0,20 ändert und die Verfallswarnung bei 0,18 angezeigt wird.
from sklearn.cross_validation import train_test_split
44: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20.
"This module will be removed in 0.20.", DeprecationWarning)
Also aus dem neuen Modul importieren
from sklearn.model_selection import train_test_split
Ich googelte und dachte, es wäre schön, wenn Sie das Migrationsziel in Warnung schreiben könnten.
Recommended Posts