From cced441e5fe032730e8080cc08800e76fd90f029 Mon Sep 17 00:00:00 2001 From: speech_asr Date: Thu, 9 Feb 2023 15:12:14 +0800 Subject: [PATCH] add file flush --- funasr/utils/wav_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/funasr/utils/wav_utils.py b/funasr/utils/wav_utils.py index c86c7d2e8..8325ad399 100644 --- a/funasr/utils/wav_utils.py +++ b/funasr/utils/wav_utils.py @@ -204,6 +204,7 @@ def calc_shape_core(root_path, frontend_conf, speech_length_min, speech_length_m write_flag = False if write_flag: f.write("{} {},{}\n".format(sample_name, str(int(np.ceil(n_frames))), str(int(feature_dim)))) + f.flush() def calc_shape(data_dir, dataset, frontend_conf, speech_length_min=-1, speech_length_max=-1, nj=32):