plemeri / InSPyReNet

Official PyTorch implementation of Revisiting Image Pyramid Structure for High Resolution Salient Object Detection (ACCV 2022)
MIT License
321 stars 61 forks source link

Training Swin Transformer? #13

Closed rakesh-reddy95 closed 1 year ago

rakesh-reddy95 commented 1 year ago

I see that there are changes in comparison with the official implementation of Swin Transformer. Also is the Swin transformer getting trained while training Inspyrenet?

plemeri commented 1 year ago

Hi, we follow the official implementation of Swin Transformer from their Semantic Segmentation version. Although we did not mention in the paper, there are some minor changes to provide intermediate feature maps.

We train both backbone while training our model, so if you use our method with swin transformer (InSPyReNet_SwinB), then every parameter in the network is participating to the training.

Thank you and feel free to ask more question 😄

rakesh-reddy95 commented 1 year ago

Thank you.