You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe a silly question, but where are the models downloaded by candle saved? I tried running find / -type f -name "llama-2-7b.ggmlv3.q4_0.bin" 2>/dev/null to find this model in the system, but it is nowhere to be found.
The text was updated successfully, but these errors were encountered:
By default, models end up in $HOME/.cache/huggingface/hub/ but this can be overridden if needed. Candle actually don't handle that directly so you may want to look at the code of https://github.com/huggingface/hf-hub/ instead.
By default, models end up in $HOME/.cache/huggingface/hub/ but this can be overridden if needed. Candle actually don't handle that directly so you may want to look at the code of https://github.com/huggingface/hf-hub/ instead.
Thank you! I couldn't find it by scanning the computer for the model's name because of the way huggingface-hub names directories and files.
Maybe a silly question, but where are the models downloaded by candle saved? I tried running
find / -type f -name "llama-2-7b.ggmlv3.q4_0.bin" 2>/dev/null
to find this model in the system, but it is nowhere to be found.The text was updated successfully, but these errors were encountered: