Cannot Download Dataset - 400 Bad Request Error
Hello, I am unable to download the dataset.zst file. All methods have failed, including git lfs, curl, wget, and direct downloads from a web browser.
Clicking the download link in a browser results in a "400 Bad Request" error. This seems to be a server-side issue preventing the generation of a valid download link for this large LFS file.
Possibly try installing the hf_xet package and try to download using huggingface-cli, lfs (git uses this) maxes out at 50GB files. xet seems to allow much larger. I couldn't upload this without xet enabled.
I can start the download using this method :)
I also get 400 errors in the browser.
The issue is a don't have the disk space to uncompress the entire dataset (nor the huggingface allowance to upload a repo so big) and zst doesn't support splitting it seems.
This worked for me:
pip install -U "huggingface_hub[hf_xet]>=0.30.0"
from huggingface_hub import hf_hub_download
file_path = hf_hub_download(
repo_id="SaisExperiments/Discord-Unveiled-Compressed",
filename="dataset.zst",
repo_type="dataset",
local_dir="./Discord-Unveiled-Compressed"
)
I'm getting a 401 error after downloading around 35.5 gb through huggingface_hub.
I've tried using a VPN and hit this same wall.
Is any authentication needed to download larger files with xet?