4

GridsearchCV() 有一个参数 cv,默认值为 3 表示它是 3 倍。有什么方法可以将 Gridsearch() 与保留验证方案一起使用。例如 80-20% 拆分???

4

1 回答 1

3

您可以使用sklearn.model_selection.ShuffleSplitor sklearn.model_selection.StratifiedShuffleSplitwithn_splits=1代替 cv 参数

阅读文档以获取更多详细信息 http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.StratifiedShuffleSplit.html#sklearn.model_selection.StratifiedShuffleSplit

于 2018-02-24T15:01:15.737 回答