Skip to content

Commit

Permalink
convert dtype of the response variable
Browse files Browse the repository at this point in the history
  • Loading branch information
achieveordie committed Oct 25, 2023
1 parent 4ae447b commit 60e85a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sktime/utils/tests/test_mlflow_sktime_model_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def test_data_arrow_head():
"""Create sample data for univariate classification."""
X_train, y_train = load_arrow_head(split="TRAIN")
X_test, y_test = load_arrow_head(split="TEST")
return y_train, y_test, X_train, X_test
return y_train.astype(int), y_test.astype(int), X_train, X_test


@pytest.fixture(scope="module")
Expand Down

0 comments on commit 60e85a9

Please sign in to comment.