speech_asr 3 лет назад
Родитель
Сommit
216dc0978c
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      funasr/utils/wav_utils.py

+ 1 - 1
funasr/utils/wav_utils.py

@@ -311,7 +311,7 @@ def filter_wav_text(data_dir, dataset):
         sample_name, txt = parts
         text_dict[sample_name] = txt
     filter_count = 0
-    with open(wav_file) as f_wav, open(text_file) as f_text:
+    with open(wav_file, "w") as f_wav, open(text_file, "w") as f_text:
         for sample_name, wav_path in wav_dict.items():
             if sample_name in text_dict.keys():
                 f_wav.write(sample_name + " " + wav_path  + "\n")