Skip to content

Commit b41af6f

Browse files
authored
Update utils.py
1 parent 749cb7b commit b41af6f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

programs/applio_code/rvc/lib/utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,10 @@ def load_embedding(embedder_model, custom_embedder=None):
105105
os.makedirs(model_path, exist_ok=True)
106106
if not os.path.exists(bin_file):
107107
url = online_embedders[embedder_model]
108-
print(f"Downloading {url} to {model_path}...")
108+
109109
wget.download(url, out=bin_file)
110110
if not os.path.exists(json_file):
111111
url = config_files[embedder_model]
112-
print(f"Downloading {url} to {model_path}...")
113112
wget.download(url, out=json_file)
114113

115114
models = HubertModelWithFinalProj.from_pretrained(model_path)

0 commit comments

Comments
 (0)