text_emb/text_emb_1908~1913.npy are not available

#3
by purewhites - opened

Hello! When I try to run this bash command to transfer file to aws:

url="https://huggingface.co/datasets/laion/laion2b-en-vit-l-14-embeddings/resolve/main/text_emb/"
postfix="?download=true"
textembprefix="laion2b-en-embedding:laion2b-en-vit-l-14-embeddings/text_emb"
for i in $(seq 0 2312); do
 printf -v filename "text_emb_%04d.npy" "$i"
 wget -O $filename "$url$filename$postfix"
 rclone -P copy $filename $textembprefix
 rm $filename
 echo "transfer $filename done."
done

it return error when processing text_emb_1908.npy to text_emb_1913.npy :

--2023-11-14 22:15:08--  https://huggingface.co/datasets/laion/laion2b-en-vit-l-14-embeddings/resolve/main/text_emb/text_emb_1908.npy?download=true
Resolving huggingface.co (huggingface.co)... 18.164.174.17, 18.164.174.23, 18.164.174.55, ...
Connecting to huggingface.co (huggingface.co)|18.164.174.17|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2023-11-14 22:15:08 ERROR 404: Not Found.

but the other file can be downloaded with this command line.

Sign up or log in to comment