Question 30
Consider following code:
import numpy as npfrom sklearn.model_selection import KFold
X = np.array([47, 31, 18, 95, 85, 77])kf = KFold(n_splits=3)for train, test in kf.split(X): print(X[train])Which of the following options can not be printed?
[47, 31, 18, 95, 77]
[47, 31, 18 ]
[31, 41, 18, 95, 85, 77]
[31, 41, 85, 31]
[18, 95, 85, 77]
[47, 31, 18, 85]
None of these