See base class.
(self, data_dir)
| 406 | """Processor for the CSL data set.""" |
| 407 | |
| 408 | def get_train_examples(self, data_dir): |
| 409 | """See base class.""" |
| 410 | return self._create_examples( |
| 411 | self._read_json(os.path.join(data_dir, "train.json")), "train") |
| 412 | |
| 413 | def get_dev_examples(self, data_dir): |
| 414 | """See base class.""" |
nothing calls this directly
no test coverage detected