(self)
| 179 | pass |
| 180 | |
| 181 | def test_script(self): |
| 182 | for padding_flag in [True, False]: |
| 183 | net = HoVerNet(mode=HoVerNet.Mode.FAST, decoder_padding=padding_flag) |
| 184 | test_data = torch.randn(1, 3, 256, 256) |
| 185 | test_script_save(net, test_data) |
| 186 | |
| 187 | def test_ill_input_shape(self): |
| 188 | net = HoVerNet(mode=HoVerNet.Mode.FAST) |
nothing calls this directly
no test coverage detected