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 79e647d commit 0b786e4Copy full SHA for 0b786e4
1 file changed
openml/datasets/functions.py
@@ -8,6 +8,7 @@
8
import numpy as np
9
import arff
10
import pandas as pd
11
+import urllib3
12
13
import xmltodict
14
from scipy.sparse import coo_matrix
@@ -425,7 +426,10 @@ def get_dataset(
425
426
427
arff_file = _get_dataset_arff(description) if download_data else None
428
if "oml:minio_url" in description and download_data:
- parquet_file = _get_dataset_parquet(description)
429
+ try:
430
+ parquet_file = _get_dataset_parquet(description)
431
+ except urllib3.exceptions.MaxRetryError:
432
+ parquet_file = None
433
else:
434
parquet_file = None
435
remove_dataset_cache = False
0 commit comments