File size: 164 Bytes
942e603 |
1 2 3 4 5 6 7 |
def qa4mre_process(doc):
return int(doc["correct_answer_id"]) - 1
def doc_to_target(doc):
return doc["answer_options"]["answer_str"][qa4mre_process(doc)]
|
942e603 |
1 2 3 4 5 6 7 |
def qa4mre_process(doc):
return int(doc["correct_answer_id"]) - 1
def doc_to_target(doc):
return doc["answer_options"]["answer_str"][qa4mre_process(doc)]
|