From faa391c115800155eace329f01334558a01f0acd Mon Sep 17 00:00:00 2001 From: ViperEkura <3081035982@qq.com> Date: Fri, 27 Feb 2026 19:02:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E7=BC=80=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utils.py b/modules/utils.py index 25b1c92..a6ecad0 100644 --- a/modules/utils.py +++ b/modules/utils.py @@ -109,7 +109,7 @@ def dump_files( ): for file_path in files: - out_file_name = os.path.basename(file_path).replace(".jsonl", ".pkl") + out_file_name = os.path.basename(file_path).replace(".jsonl", ".h5") out_file_path = os.path.join(base_out_dir, out_file_name) file_name = os.path.basename(file_path) os.makedirs(os.path.dirname(out_file_path), exist_ok=True)