ESANet icon indicating copy to clipboard operation
ESANet copied to clipboard

Pretrained model with ResNet50 backbone.

Open skyshoumeng opened this issue 4 years ago • 2 comments

Thank you for the great work, could you provide the pretrained model with ResNet50 backbone. Thank you very much.

skyshoumeng avatar Jan 22 '21 02:01 skyshoumeng

The networks with ResNet50 backbone only serve as a reference for our approach. As shown in our experiments, the performance gain ist quite small while increasing inference time notably.

However, you can easily train it on your own by passing --encoder resnet50 to our train.py. Note that the used ResNet50 is from TorchVision and, thus, uses downsampling in the spatial convolution instead of the first point-wise convolution in the bottleneck block (see: our code, this is also known as ResNet v1.5, see GitHub TorchVision).

danielS91 avatar Jan 22 '21 18:01 danielS91

OK, I got it, thank you very much.

skyshoumeng avatar Jan 23 '21 04:01 skyshoumeng