From 5b9c073f43dbecc3ae9d771af50a8f52f87931e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AF=AD=E5=B8=86?= Date: Wed, 28 Feb 2024 15:49:41 +0800 Subject: [PATCH] test --- funasr/models/lcbnet/model.py | 1 - funasr/utils/load_utils.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/funasr/models/lcbnet/model.py b/funasr/models/lcbnet/model.py index 8070aa378..b4a206bed 100644 --- a/funasr/models/lcbnet/model.py +++ b/funasr/models/lcbnet/model.py @@ -438,7 +438,6 @@ class LCBNet(nn.Module): speech = speech.to(device=kwargs["device"]) speech_lengths = speech_lengths.to(device=kwargs["device"]) - pdb.set_trace() # Encoder encoder_out, encoder_out_lens = self.encode(speech, speech_lengths) if isinstance(encoder_out, tuple): diff --git a/funasr/utils/load_utils.py b/funasr/utils/load_utils.py index 644af2324..8b75cbdb6 100644 --- a/funasr/utils/load_utils.py +++ b/funasr/utils/load_utils.py @@ -31,7 +31,7 @@ def load_audio_text_image_video(data_or_path_or_list, fs: int = 16000, audio_fs: return [load_audio_text_image_video(audio, fs=fs, audio_fs=audio_fs, data_type=data_type, **kwargs) for audio in data_or_path_or_list] if isinstance(data_or_path_or_list, str) and data_or_path_or_list.startswith('http'): # download url to local file data_or_path_or_list = download_from_url(data_or_path_or_list) - + pdb.set_trace() if isinstance(data_or_path_or_list, str) and os.path.exists(data_or_path_or_list): # local file if data_type is None or data_type == "sound": data_or_path_or_list, audio_fs = torchaudio.load(data_or_path_or_list)