From 698e8a5da5430d356fb07c408933a0197ea2bfd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E5=BA=94?= Date: Tue, 3 Mar 2026 12:37:42 +0800 Subject: [PATCH] =?UTF-8?q?style(benchmark):=20=E6=A0=BC=E5=BC=8F=E5=8C=96?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E5=90=8D=E7=A7=B0=E6=89=93=E5=8D=B0=E8=BE=93?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除了多行字符串中的换行符和多余空格 - 将模型名称信息合并为单行连续显示 - 保持了原有的打印格式和信息完整性 --- benchmark/longmemeval/eval_longmemeval_reme.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/benchmark/longmemeval/eval_longmemeval_reme.py b/benchmark/longmemeval/eval_longmemeval_reme.py index 2180266d..c529b434 100644 --- a/benchmark/longmemeval/eval_longmemeval_reme.py +++ b/benchmark/longmemeval/eval_longmemeval_reme.py @@ -786,9 +786,8 @@ class LongMemEvalEvaluator: print(f"Questions to process: {total_questions} | Top-K: {self.config.top_k}") print(f"Max Concurrency: {self.config.max_concurrency}") print( - f"Summary Model: {self.config.reme_model_name} | " - f"Retrieve Model: {self.config.retrieve_model_name} | " - f"Eval Model: {self.config.eval_model_name}", + f"Summary Model: {self.config.reme_model_name} | Retrieve Model: {self.config.retrieve_model_name} " + f"| Eval Model: {self.config.eval_model_name}", ) print(f"Algo Version: {self.config.algo_version}") print("=" * 80 + "\n")