| 291 | } // namespace |
| 292 | |
| 293 | SymbolVarArray mgb::make_det(Network& network, size_t batch, DType out_dtype) { |
| 294 | SymbolVarArray outputs; |
| 295 | auto pyramids = make_pyramids(network, batch, out_dtype); |
| 296 | auto fpn_hv = fusion_pyramids_feature(network, pyramids, 16); |
| 297 | auto fpn_plate = fusion_pyramids_feature(network, pyramids, 16); |
| 298 | outputs.insert(outputs.end(), fpn_hv.begin(), fpn_hv.end()); |
| 299 | outputs.insert(outputs.end(), fpn_plate.begin(), fpn_plate.end()); |
| 300 | return outputs; |
| 301 | } |
| 302 | |
| 303 | SymbolVar mgb::bottleneck( |
| 304 | Network& network, SymbolVar f, size_t input_channels, size_t channels, size_t t, |
nothing calls this directly
no test coverage detected