File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1871,7 +1871,8 @@ def _dataset_features_is_downloaded(did: int):
18711871def _dataset_data_file_is_downloaded (did : int ):
18721872 cache_directory = Path (openml .config .get_cache_directory ()) / "minio/datasets/0000/0001"
18731873 TestBase .logger .info (f"Checking for data file in { cache_directory } " )
1874- TestBase .logger .info (f"Files in cache directory: { [f .name for f in Path (openml .config .get_cache_directory ()).iterdir ()]} " )
1874+ TestBase .logger .info (f"Files in cache directory: { [f .name for f in (Path (openml .config .get_cache_directory ())/ 'minio' ).iterdir ()]} " )
1875+ TestBase .logger .info (f"Files in cache directory: { [f .name for f in (Path (openml .config .get_cache_directory ())/ 'minio/datatsets' ).iterdir ()]} " )
18751876 if not cache_directory .exists ():
18761877 return False
18771878 return any (f .suffix in (".pq" , ".arff" ) for f in cache_directory .iterdir ())
You can’t perform that action at this time.
0 commit comments