From 307818ae1a0fffddd46d685ca782f3a3dd666881 Mon Sep 17 00:00:00 2001 From: livingbody Date: Sat, 1 Jan 2022 20:01:24 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E6=B5=8B=E7=BB=93=E6=9E=9C=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E5=A2=9E=E5=8A=A0=E6=8D=A2=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 第140行 fout.write(file + "\t" + info) 改为 fout.write(file + "\t" + info + "\n") --- tools/infer_rec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/infer_rec.py b/tools/infer_rec.py index adc3c1c3..2c9b5f79 100755 --- a/tools/infer_rec.py +++ b/tools/infer_rec.py @@ -137,7 +137,7 @@ def main(): if info is not None: logger.info("\t result: {}".format(info)) - fout.write(file + "\t" + info) + fout.write(file + "\t" + info + "\n") logger.info("success!") -- GitLab