8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a48bf commit 21b23ceCopy full SHA for 21b23ce
sklearn/model_selection/tests/test_validation.py
@@ -977,6 +977,8 @@ def test_permutation_test_score_pandas():
977
pass
978
for TargetType, InputFeatureType in types:
979
# X dataframe, y series
980
+ iris = load_iris()
981
+ X, y = iris.data, iris.target
982
X_df, y_ser = InputFeatureType(X), TargetType(y)
983
check_df = lambda x: isinstance(x, InputFeatureType)
984
check_series = lambda x: isinstance(x, TargetType)
0 commit comments