Skip to content

Commit ab02267

Browse files
authored
Merge pull request #674 from snakers4/adamnsandle
Adamnsandle
2 parents 3c70b58 + 485a7d9 commit ab02267

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
@@ -3,7 +3,7 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44
[project]
55
name = "silero-vad"
6-
version = "5.1.2"
6+
version = "6.0.0"
77
authors = [
88
{name="Silero Team", email="[email protected]"},
99
]

src/silero_vad/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def load_silero_vad(onnx=False, opset_version=16):
2929
model_file_path = str(impresources.files(package_path).joinpath(model_name))
3030

3131
if onnx:
32-
model = OnnxWrapper(model_file_path, force_onnx_cpu=True)
32+
model = OnnxWrapper(str(model_file_path), force_onnx_cpu=True)
3333
else:
3434
model = init_jit_model(model_file_path)
3535

0 commit comments

Comments
 (0)