fix some bug

pull/4101/head
zxcd 2 weeks ago
parent dc5fc6aad9
commit 38b3c4a87b

@ -140,7 +140,7 @@ class WhisperExecutor(BaseExecutor):
model_type: str='whisper', model_type: str='whisper',
lang: str='', lang: str='',
task: str='transcribe', task: str='transcribe',
size: str='large', size: str='turbo',
language: str='None', language: str='None',
sample_rate: int=16000, sample_rate: int=16000,
cfg_path: Optional[os.PathLike]=None, cfg_path: Optional[os.PathLike]=None,

@ -939,9 +939,9 @@ whisper_dynamic_pretrained_models = {
'params': 'params':
'whisper-turbo-model.pdparams', 'whisper-turbo-model.pdparams',
'resource_data': 'resource_data':
'https://paddlespeech.cdn.bcebos.com/whisper/whisper_model_20221108/assets.tar', 'https://paddlespeech.bj.bcebos.com/whisper/whisper_model_20250825/assets.tar',
'resource_data_md5': 'resource_data_md5':
'37a0a8abdb3641a51194f79567a93b61', 'dd61d092d362f1fdbae6ede08282e177',
}, },
}, },
} }

@ -1557,7 +1557,7 @@ def hann_window(n_fft: int=N_FFT):
""" """
return paddle.to_tensor( return paddle.to_tensor(
[0.5 - 0.5 * np.cos(2 * np.pi * n / n_fft) for n in range(n_fft)], [0.5 - 0.5 * np.cos(2 * np.pi * n / n_fft) for n in range(n_fft)],
dtype=paddle.float32) dtype="float32")
@lru_cache(maxsize=None) @lru_cache(maxsize=None)

Loading…
Cancel
Save