Inside function llm_judge_column, it seems that the following code will not be executed, since len(score_list) == len(response) in current implementation.
if len(score_list) != len(response):
score_list = [0] * len(response)
msg_list = ["llm judge failed due to length"] * len(response)
|
if len(score_list) != len(response): |
Inside function
llm_judge_column, it seems that the following code will not be executed, sincelen(score_list) == len(response)in current implementation.WideSearch/src/evaluation/metric_utils.py
Line 376 in 9825ba7