Commit f33d3758 authored by haileyschoelkopf's avatar haileyschoelkopf
Browse files

fix error in a logging msg

parent 87323176
...@@ -253,7 +253,7 @@ def evaluate( ...@@ -253,7 +253,7 @@ def evaluate(
eval_logger.info( eval_logger.info(
f"Task: {task_name}; document {inst.doc_id}; context prompt (starting on next line):\n{inst.args[0]}\n(end of prompt on previous line)" f"Task: {task_name}; document {inst.doc_id}; context prompt (starting on next line):\n{inst.args[0]}\n(end of prompt on previous line)"
) )
eval_logger.info("Request:", inst) eval_logger.info(f"Request: {str(inst)}")
# aggregate Instances by LM method requested to get output. # aggregate Instances by LM method requested to get output.
reqtype = ( reqtype = (
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment