diff --git a/health/crawler/spiders/openml.py b/health/crawler/spiders/openml.py index 85a2ac715..26eba0da2 100644 --- a/health/crawler/spiders/openml.py +++ b/health/crawler/spiders/openml.py @@ -21,5 +21,5 @@ def list_datasets(self): def get_url(self, dataset_id: str): """See base class.""" return ( - f"https://openml1.win.tue.nl/{dataset_id // 10000:04d}/{dataset_id:04d}/dataset_{dataset_id}_croissant.json" + f"https://openml1.win.tue.nl/datasets/{dataset_id // 10000:04d}/{dataset_id:04d}/dataset_{dataset_id}_croissant.json" )