(cls, cfg)
| 48 | |
| 49 | @classmethod |
| 50 | def build_train_loader(cls, cfg): |
| 51 | mapper = SparseRCNNDatasetMapper(cfg, is_train=True) |
| 52 | return build_detection_train_loader(cfg, mapper=mapper) |
| 53 | |
| 54 | @classmethod |
| 55 | def build_optimizer(cls, cfg, model): |
nothing calls this directly
no test coverage detected