1
我想問一下是否有可能做「Startified GroupShuffleSplit」在scikit學習是換言之和GroupShuffleSplit組合StratifiedShuffleSplitStartified GroupShuffleSplit在Scikit學習
這裏是代碼的樣本我使用:
cv=GroupShuffleSplit(n_splits=n_splits,test_size=test_size,\
train_size=train_size,random_state=random_state).split(\
allr_sets_nor[:,:2],allr_labels,groups=allr_groups)
opt=GridSearchCV(SVC(decision_function_shape=dfs,tol=tol),\
param_grid=param_grid,scoring=scoring,n_jobs=n_jobs,cv=cv,verbose=verbose)
opt.fit(allr_sets_nor[:,:2],allr_labels)
這裏我申請GroupShuffleSplit
但我還是想根據allr_labels
StratifiedShuffleSplit如果你想要的話,也有一個參數組。只是使用Stratifiedshufflesplit將allr_labels和適合在GridSearchCV通過組到fit()方法 –
它不適用於我不幸的是,我認爲這個選項是無效的,因爲它在文檔中說:「始終忽略,爲兼容性而存在。」 「 –