Timeout/Freeze when listing or downloading specific large dataset
#13
by easonmenendez2 - opened
Description
I am experiencing a persistent issue when trying to interact with the dataset genrobot2025/10Kh-RealOmin-OpenData. While other repositories work perfectly, this specific one freezes during file listing and fails to initiate downloads.
- list_repo_files Freezes
When running the following Python script, the process hangs indefinitely:
import sys
from huggingface_hub import list_repo_files
This call freezes only for this specific repo
files = list_repo_files(
repo_id="genrobot2025/10Kh-RealOmin-OpenData", # Works fine if change to other repo
repo_type="dataset"
)
- CLI Download Terminates Immediately
When attempting to download a specific subset via the CLI, the process shows an incomplete total and exits without downloading any data:
Command:
hf download --repo-type dataset genrobot2025/10Kh-RealOmin-OpenData --include "[STAGE\ 3]/*" --local-dir .
Output:
Downloading (incomplete total...): 0.00B [00:00, ?B/s]
Process terminates here
- The repo is too large, which causes the timeout. Leave the timeout to be empty.
- hf download --repo-type dataset genrobot2025/10Kh-RealOmin-OpenData --include '[[]STAGE 3[]]/**' --local-dir .
easonmenendez2 changed discussion status to closed