从标题我想知道它们之间有什么区别
StratifiedKFold,参数shuffle = True
StratifiedKFold(n_splits=10, shuffle=True, random_state=0)
Run Code Online (Sandbox Code Playgroud)
和
StratifiedShuffleSplit(n_splits=10, test_size=’default’, train_size=None, random_state=0)
Run Code Online (Sandbox Code Playgroud)
使用StratifiedShuffleSplit有什么好处