Get a collection of `InputExample`s for the dev set.
(self, data_dir, for_train=False)
| 246 | |
| 247 | @abstractmethod |
| 248 | def get_dev_examples(self, data_dir, for_train=False) -> List[InputExample]: |
| 249 | """Get a collection of `InputExample`s for the dev set.""" |
| 250 | pass |
| 251 | |
| 252 | def get_test_examples(self, data_dir) -> List[InputExample]: |
| 253 | """Get a collection of `InputExample`s for the test set.""" |