Skip to content

Commit 3f51676

Browse files
committed
fix: wrong path while estimate whisper model
1 parent 94c9d79 commit 3f51676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vox_box/estimator/faster_whisper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def _check_local_model(self, base_dir: str, required_files: List[str]) -> bool:
6161
if config.get("processor_class") == "WhisperProcessor":
6262
return True
6363
try:
64-
model_path = os.path.join(base_dir, "model.bin")
64+
model_path = base_dir
6565
if self._cfg.model is None:
6666
model_path = self._cfg.model
6767

0 commit comments

Comments
 (0)