Skip to content

Commit

Permalink
Merge pull request #238 from ddf420/patch-1
Browse files Browse the repository at this point in the history
Changed model extraction output path to logs/model_name/model_name.pth
  • Loading branch information
aitronz authored Jan 25, 2024
2 parents e8f8c22 + 3644d23 commit 62b40b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rvc/train/process_ckpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def extract_small_model(path, name, sr, if_f0, info, version):
sr,
int(if_f0),
)
torch.save(opt, f"logs/weights/{name}.pth")
torch.save(opt, f"logs/{name}/{name}.pth")
return "Success."
except Exception as error:
print(error)
Expand Down

0 comments on commit 62b40b1

Please sign in to comment.