专栏名称: Python开发者
人生苦短,我用 Python。伯乐在线旗下账号「Python开发者」分享 Python 相关的技术文章、工具资源、精选课程、热点资讯等。
目录
相关文章推荐
51好读  ›  专栏  ›  Python开发者

Scikit-learn 使用总结

Python开发者  · 公众号  · Python  · 2016-12-12 21:47

正文

请到「今天看啥」查看全文


, 2 , 1 , 2 , 3 ])

def show_cross_val ( method ) :

if method == "lolo" :

labels = np . array ([ "summer" , "winter" , "summer" , "winter" , "spring" ])

cv = cross_validation . LeaveOneLabelOut ( labels )

elif method == 'lplo' :

labels = np . array ([ "summer" , "winter" , "summer" , "winter" , "spring" ])

cv = cross_validation . LeavePLabelOut ( labels , p = 2 )

elif method == 'loo' :

cv = cross_validation . LeaveOneOut ( n = len ( y ))

elif method == 'lpo' :

cv = cross_validation . LeavePOut ( n = len ( y ), p = 3 )

for train_index ,







请到「今天看啥」查看全文