Unverified Commit 907c99c0 authored by Hailey Schoelkopf's avatar Hailey Schoelkopf Committed by GitHub
Browse files

Update evaluator.py

parent 76bf11c5
...@@ -204,11 +204,11 @@ def evaluate( ...@@ -204,11 +204,11 @@ def evaluate(
if write_out: if write_out:
for inst in task.instances: for inst in task.instances:
# print the prompt for the first few documents # print the prompt for the first few documents
if inst.doc_id < 4: if inst.doc_id < 1:
print( 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)"
) )
print("Request:", inst) eval_logger.info("Request:", 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