(self, data_dir, tokenizer)
| 148 | |
| 149 | class SQuADGenerationProcessor: |
| 150 | def __init__(self, data_dir, tokenizer): |
| 151 | self.data_dir = data_dir |
| 152 | self.tokenizer = tokenizer |
| 153 | |
| 154 | def create_examples(self, split): |
| 155 | if split == "train": |
nothing calls this directly
no outgoing calls
no test coverage detected