(self)
| 65 | io.remove(output_file) |
| 66 | |
| 67 | def test_predict(self): |
| 68 | model_type = 'YoloXPredictor' |
| 69 | model_path = PRETRAINED_MODEL_YOLOXS_EXPORT |
| 70 | self._base_predict(model_type, model_path) |
| 71 | |
| 72 | @unittest.skipIf(torch.cuda.device_count() <= 1, 'distributed unittest') |
| 73 | def test_predict_dist(self): |
nothing calls this directly
no test coverage detected