-
Running on Ubuntu 22.04 as per https://www.youtube.com/watch?v=lbFmceo4D5E&t=282s Getting: OSError: Can't load tokenizer for 'TheBloke/Llama-2-7B-Chat-GGML'. If you were trying to load it from 'https://huggingface.co/models', make sure you don't have a local directory with the same name. Otherwise, make sure 'TheBloke/Llama-2-7B-Chat-GGML' is the correct path to a directory containing all relevant files for a LlamaTokenizerFast tokenizer. Getting: .cache/huggingface/hub/models--TheBloke/Llama-2-7B-Chat-GGML folder without contents. What am I missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Needed to include the device_type cpu: This corrected the problem. |
Beta Was this translation helpful? Give feedback.
Needed to include the device_type cpu:
python run_localGPT.py --device_type cpu
This corrected the problem.