Hi everyone,
I’m trying to convert a pretrained GluonCV FasterRCNN to TVM Relay, but it seems that the NMS ops expect different inputs for the bbox coordinates.
The gluoncv one expects [score, xmin, ymin…] and is controlled through start_coords
.
The tvm one expects [class, score, xmin…] but is not flexible (start_coord == 2).
Any hints on how to proceed?
Thank you