(self, data_dir, for_train=False)
| 751 | """Processor for the ReCoRD data set.""" |
| 752 | |
| 753 | def get_dev_examples(self, data_dir, for_train=False): |
| 754 | return self._create_examples(os.path.join(data_dir, "val.jsonl"), "dev", for_train=for_train) |
| 755 | |
| 756 | @property |
| 757 | def variable_num_choices(self): |
nothing calls this directly
no test coverage detected