You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ChesapeakeMD dataset fails when attempting to extract the downloaded zip file as zipfile.ZipFile doesn't support the deflate64 compression type that _MD_STATEWIDE.zip uses.
The text was updated successfully, but these errors were encountered:
I was hoping this would be done automatically. Torchvision had some logic to inject this but it wasn't clear to me how it worked. Will investigate more.
So it turns out deflate and deflate64 are very different. The latter is a proprietary compression scheme that is not supported by zipfile. We could use https://pypi.org/project/zipfile-deflate64/, or call unzip or 7z from the command line.
The ChesapeakeMD dataset fails when attempting to extract the downloaded zip file as
zipfile.ZipFile
doesn't support the deflate64 compression type that_MD_STATEWIDE.zip
uses.The text was updated successfully, but these errors were encountered: