Hi,
Is there any functionality to use other backbones like Xception, MobileNet or even transformers? And if it can't be used directly, which part of code should we tweak in order to get these backbones?
I think in order to use any backbone, we just have to change
self.resnet_features = ResNet101(nInputChannels, os, pretrained=pretrained)
or
self.xception_features = Xception(nInputChannels, os, pretrained) right?
Hi,
Is there any functionality to use other backbones like
Xception,MobileNetor even transformers? And if it can't be used directly, which part of code should we tweak in order to get these backbones?I think in order to use any backbone, we just have to change
self.resnet_features = ResNet101(nInputChannels, os, pretrained=pretrained)or
self.xception_features = Xception(nInputChannels, os, pretrained)right?