Skip to content

Commit

Permalink
[fbsync] EuroSAT: fix SSL certificate issues (#8563)
Browse files Browse the repository at this point in the history
Differential Revision: D60903714

fbshipit-source-id: cddb425b64f5b813fc96827bd839f013e2afeea5

Co-authored-by: Nicolas Hug <contact@nicolas-hug.com>
Co-authored-by: Nicolas Hug <nh.nicolas.hug@gmail.com>
  • Loading branch information
3 people authored and facebook-github-bot committed Aug 7, 2024
1 parent 4076494 commit fcc971c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion torchvision/datasets/eurosat.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
class EuroSAT(ImageFolder):
"""RGB version of the `EuroSAT <https://github.com/phelber/eurosat>`_ Dataset.
For the MS version of the dataset, see
`TorchGeo <https://torchgeo.readthedocs.io/en/stable/api/datasets.html#eurosat>`__.
Args:
root (str or ``pathlib.Path``): Root directory of dataset where ``root/eurosat`` exists.
transform (callable, optional): A function/transform that takes in a PIL image
Expand Down Expand Up @@ -53,7 +56,7 @@ def download(self) -> None:

os.makedirs(self._base_folder, exist_ok=True)
download_and_extract_archive(
"https://madm.dfki.de/files/sentinel/EuroSAT.zip",
"https://huggingface.co/datasets/torchgeo/eurosat/resolve/c877bcd43f099cd0196738f714544e355477f3fd/EuroSAT.zip",
download_root=self._base_folder,
md5="c8fa014336c82ac7804f0398fcb19387",
)

0 comments on commit fcc971c

Please sign in to comment.