Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion evalbench/eval_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,13 @@ async def read_from_client():
logging.debug("Read task cancelled as expected.")

# Process final scoring and reporting
job_id, run_time, results_tf, scores_tf = orchestrator.process()
(
job_id,
run_time,
results_tf,
scores_tf,
multi_trial_scores_tf,
) = orchestrator.process()
reporters = get_reporters(config.get(
"reporting") or {}, job_id, run_time)

Expand Down
Loading