From 23b3a906c39d200a9046730b47d7e6cf8d054a20 Mon Sep 17 00:00:00 2001 From: Joaquin Vanschoren Date: Fri, 21 Jun 2024 22:20:05 +0200 Subject: [PATCH] fix in openml dataset url --- health/crawler/spiders/openml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/health/crawler/spiders/openml.py b/health/crawler/spiders/openml.py index 85a2ac71..26eba0da 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" )