From 051cabed69bf49761959b560cd8a22ab60739390 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 18 Dec 2024 13:06:02 -0800 Subject: [PATCH] style: Adjust model column width in problem stats --- benchmark/problem_stats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/problem_stats.py b/benchmark/problem_stats.py index 1ceb270b0..75a76728d 100755 --- a/benchmark/problem_stats.py +++ b/benchmark/problem_stats.py @@ -212,10 +212,10 @@ def analyze_exercise_solutions(dirs=None, topn=None): model_hard_stats.sort(key=lambda x: x[1], reverse=True) print("\nModel performance on hard set:") - print(f"{'Model':<30} {'Solved':<8} {'Percent':>7}") + print(f"{'Model':<55} {'Solved':<8} {'Percent':>7}") print("-" * 50) for model, solved, pct in model_hard_stats: - print(f"{model:<30} {solved:>6d} {pct:>6.1f}%") + print(f"{model:<55} {solved:>6d} {pct:>6.1f}%") if __name__ == "__main__":