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 2c68a32 commit 929288fCopy full SHA for 929288f
1 file changed
tests/test_datasets/test_dataset_functions.py
@@ -1868,7 +1868,7 @@ def _dataset_features_is_downloaded(did: int):
1868
def _dataset_data_file_is_downloaded(dataset: OpenMLDataset):
1869
#TODO to be updated after minio paths is fixed
1870
if dataset._parquet_url is not None:
1871
- pq_directory = Path(openml.config.get_cache_directory()) / Path(openml.config.get_minio_download_path(dataset._parquet_url))
+ pq_directory = Path(openml.config.get_cache_directory()) / Path(openml.config.get_minio_download_path(dataset._parquet_url)).parent
1872
if pq_directory.exists():
1873
return any(f.suffix == ".pq" for f in pq_directory.iterdir())
1874
arff_directory = Path(openml.config.get_cache_directory()) / "data/v1/download" / str(dataset.id)
0 commit comments