Last active
August 13, 2024 05:11
-
-
Save calebrob6/4d7fc311045c4f9015e401100e34ed38 to your computer and use it in GitHub Desktop.
@nadeem-git-coder Have you found any solution for that?
@ProtikBose I have downloaded the dataset mannually and use it .
Have you encountered the error?
What the error
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Download the dataset and see how many images are in the train and test splits
train_dataset = LEVIRCDPlus(root="data/LEVIRCDPlus", split="train", download=True, checksum=True)
test_dataset = LEVIRCDPlus(root="data/LEVIRCDPlus", split="test", download=True, checksum=True)
len(train_dataset), len(test_dataset)
Its give error :-
RuntimeError: The MD5 checksum of the download file data/LEVIRCDPlus/LEVIR-CD+.zip does not match the one on record.Please delete the file and try again. If the issue persists, please report this to torchvision at https://github.com/pytorch/vision/issues.
i get this msg @calebrob6