79176471

Date: 2024-11-11 05:23:00
Score: 1.5
Natty:
Report link

You are encountering an error during tracing of panoptic segmentation model with Detectron2. This error message indicates that the input tensor shape being passed to the ResNet backbone is not in the expected format. The ResNet model expects an input with dimensions (N, C, H, W) where N is the batch size, C is the number of channels (3 for RGB), H is the height, and W is the width. However, it appears that the input tensor you are providing has a shape of [1, 1, 3, 800, 1280], which is incorrect.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aditya Ranjan Dass