(self, config, dataset)
| 60 | Simply create one predictor and run it on the DataFlow. |
| 61 | """ |
| 62 | def __init__(self, config, dataset): |
| 63 | super(SimpleDatasetPredictor, self).__init__(config, dataset) |
| 64 | self.predictor = OfflinePredictor(config) |
| 65 | |
| 66 | @HIDE_DOC |
| 67 | def get_result(self): |
nothing calls this directly
no test coverage detected