1
0
mirror of https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI.git synced 2026-06-07 19:40:44 +08:00

fix: remove outdated codes & add weights_only=True

This commit is contained in:
源文雨
2025-11-18 13:57:03 +08:00
parent 34f28d97e3
commit 215a3edcef
6 changed files with 15 additions and 49 deletions

View File

@@ -152,7 +152,7 @@ def model_hash_ckpt(cpt):
def model_hash_from(path):
cpt = torch.load(path, map_location="cpu")
cpt = torch.load(path, map_location="cpu", weights_only=True)
h = model_hash_ckpt(cpt)
del cpt
return h