the question about interpolate
hey,when the tensor is interpolated in the fpn layer, the output value has changed, which is different from the original mmdetection output value, so this makes the output of the entire network deviate,The problem maybe happen in torch2trt_dynamic/torch2trt_dynamic/converters/interpolate_custom.py ,Is there any solution for this?
Hi
The interpolate layer in TRT is IResizeLayer, Which only have interpolate mode (NEAREST, LINEAR). pytorch have 5 different interpolate mode(nearest, linear (3D-only), bilinear, bicubic (4D-only), trilinear (5D-only)). And the nearest implementations of these two frameworks are slightly different.
TRT might have optimize on IResizeLayer, and It is hard to implement a plugin of interp layer with perfect dynamic shape support. That's why I choice IResizeLayer.
You can write your custom interplate plugin if you really need.