funasr/runtime/python/libtorch/torch_paraformer/paraformer_bin.py
@@ -24,12 +24,15 @@ device_id: Union[str, int] = "-1", plot_timestamp_to: str = "", pred_bias: int = 1, quantize: bool = False, ): if not Path(model_dir).exists(): raise FileNotFoundError(f'{model_dir} does not exist.') model_file = os.path.join(model_dir, 'model.torchscripts') if quantize: model_file = os.path.join(model_dir, 'model_quant.torchscripts') config_file = os.path.join(model_dir, 'config.yaml') cmvn_file = os.path.join(model_dir, 'am.mvn') config = read_yaml(config_file)