UGH
This commit is contained in:
parent
556d9db0d5
commit
aefe8fcdad
|
@ -15,6 +15,10 @@ DEFAULT_MODEL_URLS = {
|
|||
'ar+nar-llama-8.sft': 'https://huggingface.co/ecker/vall-e/resolve/main/models/ckpt/ar%2Bnar-llama-8/fp32.sft',
|
||||
}
|
||||
|
||||
if not DEFAULT_MODEL_PATH.exists() and Path("./data/models/ar+nar-llama-8.sft").exists():
|
||||
DEFAULT_MODEL_DIR = Path('./data/models')
|
||||
DEFAULT_MODEL_PATH = DEFAULT_MODEL_DIR / "ar+nar-llama-8.sft"
|
||||
|
||||
# kludge, probably better to use HF's model downloader function
|
||||
# to-do: write to a temp file then copy so downloads can be interrupted
|
||||
def download_model( save_path=DEFAULT_MODEL_PATH, chunkSize = 1024 ):
|
||||
|
|
Loading…
Reference in New Issue
Block a user