FastChat
FastChat copied to clipboard
[Questions] Where can I find the delta weights automatically download?
Hi team,
I use the command below without changing the delta-path and it was automatically downloaded. It still takes effective when I rerun the command but I just wonder where this delta weights stores as I can't find it on the folder I run the command.
BTW, I use MAC. Thanks :)
python3 -m fastchat.model.apply_delta \
--base-model-path /path/to/llama-7b \
--target-model-path /path/to/output/vicuna-7b \
--delta-path lmsys/vicuna-7b-delta-v1.1
~/.cache/ if memory serves me right.
As @tarangill said, you have ~/.cache/huggingface/hub where the models end up. I will close this issue as it's pretty old and I think you found your models by now :-)
thanks guys