mobilenetv3-segmentation icon indicating copy to clipboard operation
mobilenetv3-segmentation copied to clipboard

Image size

Open bluesky314 opened this issue 5 years ago • 3 comments

Why is it requiring such huge images of >512? Original mobilenetV3 accepts small 244*244 images.

bluesky314 avatar Nov 28 '19 18:11 bluesky314

Please change it if necessary.

Tramac avatar Dec 19 '19 11:12 Tramac

The segmentation head expects big images (from datasets like Cityscapes). Check the LRASPP implementation in the paper. I was able to fix this by using AdaptiveAvgPooling instead of AvgPool in the LRASPP implementation.

dscarmo avatar May 27 '21 21:05 dscarmo

The segmentation head expects big images (from datasets like Cityscapes). Check the LRASPP implementation in the paper. I was able to fix this by using AdaptiveAvgPooling instead of AvgPool in the LRASPP implementation.

When i exported ONNX model, ONNX cannot support adaptive_avg_pool2d.How can i fix the problem?Or when i export PNNX model ,PNNX cannot support node Tensor.expand_as.

sungh66 avatar Oct 25 '22 10:10 sungh66