You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi,when i run model = Model("deeplabv3", "xception", in_channels=3, out_classes=OUT_CLASSES) , the error is "ValueError: Xception encoder does not support dilated mode due to pooling operation for downsampling!". So how can i solve it?
The text was updated successfully, but these errors were encountered:
Hey @MrLangZe, indeed, Deeplab models require the last stages of the encoder to be with the same stride, which is not supported for all encoders. At the moment there is no way to fix it out of the box for Xception, it would be easier to use another encoder.
Hey @MrLangZe, indeed, Deeplab models require the last stages of the encoder to be with the same stride, which is not supported for all encoders. At the moment there is no way to fix it out of the box for Xception, it would be easier to use another encoder.
hi,when i run
model = Model("deeplabv3", "xception", in_channels=3, out_classes=OUT_CLASSES)
, the error is "ValueError: Xception encoder does not support dilated mode due to pooling operation for downsampling!". So how can i solve it?The text was updated successfully, but these errors were encountered: