andreped commited on
Commit
78d7c66
·
1 Parent(s): d5ea603

Fixed base_path for zip download

Browse files
Files changed (1) hide show
  1. IBDColEpi.py +1 -1
IBDColEpi.py CHANGED
@@ -53,7 +53,7 @@ _LICENSE = "MIT"
53
  # TODO: Add link to the official dataset URLs here
54
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
55
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
56
- base_path = "https://huggingface.co/datasets/andreped/IBDColEpi/blob/main/"
57
  _URLS = {"part" + str(x): base_path + "WSI_part0" + str(x) + ".zip" for x in range(1, 10)}
58
  _URLS["part10"] = base_path + "WSI_part10.zip"
59
  _URLS["wsi-annotations"] = base_path + "TIFF-annotations.zip"
 
53
  # TODO: Add link to the official dataset URLs here
54
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
55
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
56
+ base_path = "https://huggingface.co/datasets/andreped/IBDColEpi/resolve/main/"
57
  _URLS = {"part" + str(x): base_path + "WSI_part0" + str(x) + ".zip" for x in range(1, 10)}
58
  _URLS["part10"] = base_path + "WSI_part10.zip"
59
  _URLS["wsi-annotations"] = base_path + "TIFF-annotations.zip"