| 6 | register_module("conv2d",conv2d); |
| 7 | } |
| 8 | torch::Tensor SegmentationHeadImpl::forward(torch::Tensor x){ |
| 9 | x = conv2d->forward(x); |
| 10 | x = upsampling->forward(x); |
| 11 | return x; |
| 12 | } |
| 13 | |
| 14 | std::string replace_all_distinct(std::string str, const std::string old_value, const std::string new_value) |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected