error downloading model? TheBloke/Mixtral-8x7B-MoE-RP-Story-AWQ

2335.9 Traceback (most recent call last):
2335.9 File "/download_model.py", line 48, in <module>
2335.9 tokenizer_folder = download_extras_or_tokenizer(tokenizer, download_dir, revisions["tokenizer"])
2335.9 File "/download_model.py", line 10, in download_extras_or_tokenizer
2335.9 folder = snapshot_download(
2335.9 File "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_validators.py", line 110, in _inner_fn
2335.9 validate_repo_id(arg_value)
2335.9 File "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_validators.py", line 164, in validate_repo_id
2335.9 raise HFValidationError(
2335.9 huggingface_hub.utils.validators.HFValidationError: Repo id must use alphanumeric chars or '-',
'
', '.', '--' and '..' are forbidden, '-' and '.' cannot start or end the name, max length is 96: ''.
------
Dockerfile:35
--------------------
34 | COPY builder/download_model.py /download_model.py
35 | >>> RUN --mount=type=secret,id=HF_TOKEN,required=false \
36 | >>> if [ -f /run/secrets/HF_TOKEN ]; then \
37 | >>> export HF_TOKEN=$(cat /run/secrets/HF_TOKEN); \
38 | >>> fi && \
39 | >>> if [ -n "$MODEL_NAME" ]; then \
40 | >>> python3 /download_model.py; \
41 | >>> fi
42 |
--------------------
ERROR: failed to solve: process "/bin/sh -c if [ -f /run/secrets/HF_TOKEN ]; then export HF_TOKEN=$(cat /run/secrets/HF_TOKEN); fi && if [ -n "$MODEL_NAME" ]; then python3 /download_model.py; fi" did not complete successfully: exit code: 1
Was this page helpful?