的
C:\Python27\lib\site-packages\sklearn\cross_validation.py: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 is different from that of this module. This module will be removed in 0.20. "This module will be removed in 0.20.", DeprecationWarning)
只是一個棄用警告。
沒有必要擔心,但是請記住,cross_val
將在0.20
被刪除。
這個錯誤只是爲了警告你,開發人員在他們做這件事之前要把它移動。
只是一個example.In的將來,我們將不得不更換:
from sklearn.cross_validation import KFold
有:
from sklearn.model_selection import KFold
對於第二個錯誤,我可以看到在您發佈的截圖,SA3L module
似乎沒有安裝。
請[發短信,不要截圖](http://meta.stackoverflow.com/a/285557/3005167),即使它對您很方便:) – kazemakase
謝謝,這是我可以' t解決它C:\ Python27 \ lib \ site-packages \ sklearn \ cross_validation.py:44:DeprecationWarning:該模塊在版本0.18中被棄用,傾向於model_selection模塊,所有重構的類和函數都被移入其中。還要注意,新的CV迭代器的接口與本模塊的接口不同。該模塊將在0.20中刪除。 「DeprecationWarning) – javac