1
0
Fork 0

fix download location for networks

This commit is contained in:
Sean Sube 2023-12-10 10:57:25 -06:00
parent 0f330652b5
commit e6978243cc
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class HuggingfaceClient(BaseClient):
return hf_hub_download( return hf_hub_download(
repo_id=source, repo_id=source,
filename="learned_embeds.bin", filename="learned_embeds.bin",
cache_dir=conversion.cache_path, cache_dir=dest or conversion.cache_path,
force_filename=f"{name}.bin", force_filename=f"{name}.bin",
token=self.token, token=self.token,
) )