(self, example: InputExample, tokenizer)
| 682 | output.write(json.dumps(passage_data) + "\n") |
| 683 | |
| 684 | def get_classifier_input(self, example: InputExample, tokenizer): |
| 685 | text_a = example.text_a |
| 686 | text_b = ' '.join([example.text_b, "answer:", example.meta['answer']]) |
| 687 | return text_a, text_b |
| 688 | |
| 689 | |
| 690 | class RaceProcessor(DataProcessor): |
nothing calls this directly
no outgoing calls
no test coverage detected