From 85c6aa006d7a45fe85aab8a3358eda712f5a7291 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sun, 10 May 2026 21:49:02 +0300 Subject: [PATCH] llama-server-simulator : fix comment - Dice coefficient, not Levenshtein Assisted-by: llama.cpp:local pi --- examples/llama-eval/llama-server-simulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/llama-eval/llama-server-simulator.py b/examples/llama-eval/llama-server-simulator.py index 5554132dee..2f9cdc5450 100755 --- a/examples/llama-eval/llama-server-simulator.py +++ b/examples/llama-eval/llama-server-simulator.py @@ -104,7 +104,7 @@ class AimeDataset: debug_log(f"DEBUG: Found match (no LaTeX) at index {i}") return question - # Calculate Levenshtein distance for partial matches + # Calculate Dice coefficient for partial matches # Only consider if request is at least 50% of question length if len(request_lower) >= len(question_lower) * 0.5: distance = dice(question_lower, request_lower)