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
Hi, @adamjstewart I want to change the link to the substation dataset to Hugging Face for the next release. But I am getting the following error while doing so. This is because the dataset is big and I have to divide it into parts, can I implement my custom function to handle this and a external library, or is there an alternative:
File /ext3/miniforge3/lib/python3.12/zipfile/init.py:257, in _EndRecData64(fpin, offset, endrec)
254 return endrec
256 if diskno != 0 or disks > 1:
--> 257 raise BadZipFile("zipfiles that span multiple disks are not supported")
259 # Assume no 'zip64 extensible data'
260 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2)
BadZipFile: zipfiles that span multiple disks are not supported
File /ext3/miniforge3/lib/python3.12/zipfile/init.py:257, in _EndRecData64(fpin, offset, endrec)
254 return endrec
256 if diskno != 0 or disks > 1:
--> 257 raise BadZipFile("zipfiles that span multiple disks are not supported")
259 # Assume no 'zip64 extensible data'
260 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2)
BadZipFile: zipfiles that span multiple disks are not supported
The text was updated successfully, but these errors were encountered:
What's the total size of the .tar.gz? HF can host individual files up to 50 GB each. For larger files, you can split it up, but you'll need to merge it again before extraction. The SSL4EO-L dataset is a good example of this.
Hi, @adamjstewart I want to change the link to the substation dataset to Hugging Face for the next release. But I am getting the following error while doing so. This is because the dataset is big and I have to divide it into parts, can I implement my custom function to handle this and a external library, or is there an alternative:
File /ext3/miniforge3/lib/python3.12/zipfile/init.py:257, in _EndRecData64(fpin, offset, endrec)
254 return endrec
256 if diskno != 0 or disks > 1:
--> 257 raise BadZipFile("zipfiles that span multiple disks are not supported")
259 # Assume no 'zip64 extensible data'
260 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2)
BadZipFile: zipfiles that span multiple disks are not supported
File /ext3/miniforge3/lib/python3.12/zipfile/init.py:257, in _EndRecData64(fpin, offset, endrec)
254 return endrec
256 if diskno != 0 or disks > 1:
--> 257 raise BadZipFile("zipfiles that span multiple disks are not supported")
259 # Assume no 'zip64 extensible data'
260 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2)
BadZipFile: zipfiles that span multiple disks are not supported
The text was updated successfully, but these errors were encountered: