Get a collection of `InputExample`s for the unlabeled set.
(self, data_dir)
| 254 | return [] |
| 255 | |
| 256 | def get_unlabeled_examples(self, data_dir) -> List[InputExample]: |
| 257 | """Get a collection of `InputExample`s for the unlabeled set.""" |
| 258 | return [] |
| 259 | |
| 260 | @abstractmethod |
| 261 | def get_labels(self) -> List[str]: |