Skip to content

Commit

Permalink
same training and validation uri is causing path not found issue for …
Browse files Browse the repository at this point in the history
…nlp text classification (#26699)
  • Loading branch information
novaturient95 authored Oct 7, 2022
1 parent 0c1da06 commit 53618d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/ml/azure-ai-ml/tests/automl_job/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def image_segmentation_dataset() -> Tuple[str, str]:
@pytest.fixture
def newsgroup() -> Tuple[Input, Input, str]:
training_data = Input(type=AssetTypes.MLTABLE, path=NEWSGROUP_TRAIN_DATASET_PATH)
validation_data = Input(type=AssetTypes.MLTABLE, path=NEWSGROUP_TRAIN_DATASET_PATH)
validation_data = Input(type=AssetTypes.MLTABLE, path=NEWSGROUP_VALID_DATASET_PATH)
target_column_name = "y"

return training_data, validation_data, target_column_name
Expand Down

0 comments on commit 53618d0

Please sign in to comment.