Skip to content

Commit acc7363

Browse files
committed
fix path problem #5
1 parent 2dce847 commit acc7363

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "rvc-python"
7-
version = "0.0.4"
7+
version = "0.0.5"
88
authors = [
99
{ name="daswer123", email="daswerq123@gmail.com" },
1010
]

rvc_python/modules/vc/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def get_f0(
148148
logger.info(
149149
"Loading rmvpe model - base_models/rmvpe.pth"
150150
)
151-
rmvpe_path = Path(f"{self.lib_dir}\\base_model\\rmvpe.pt")
151+
rmvpe_path = Path(self.lib_dir) / "base_model" / "rmvpe.pt"
152152
self.model_rmvpe = RMVPE(
153153
rmvpe_path,
154154
is_half=self.is_half,

0 commit comments

Comments
 (0)