Skip to content

Commit

Permalink
fix path problem #5
Browse files Browse the repository at this point in the history
  • Loading branch information
daswer123 committed Mar 7, 2024
1 parent 2dce847 commit acc7363
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "rvc-python"
version = "0.0.4"
version = "0.0.5"
authors = [
{ name="daswer123", email="daswerq123@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion rvc_python/modules/vc/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def get_f0(
logger.info(
"Loading rmvpe model - base_models/rmvpe.pth"
)
rmvpe_path = Path(f"{self.lib_dir}\\base_model\\rmvpe.pt")
rmvpe_path = Path(self.lib_dir) / "base_model" / "rmvpe.pt"
self.model_rmvpe = RMVPE(
rmvpe_path,
is_half=self.is_half,
Expand Down

0 comments on commit acc7363

Please sign in to comment.