(self, tokenizer, return_source_length=False)
| 31 | |
| 32 | class ConditionalLoader: |
| 33 | def __init__(self, tokenizer, return_source_length=False): |
| 34 | self.tokenizer = tokenizer |
| 35 | self.return_source_length = return_source_length |
| 36 | self.data_dir = './conditional_data' |
| 37 | |
| 38 | @staticmethod |
| 39 | def _convert_to_features_original(example_batch, tokenizer): |
nothing calls this directly
no outgoing calls
no test coverage detected