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

Was there a reason why you didn't inherit nn.Module in ImagePyramid class? #16

Closed skuley closed 1 year ago

skuley commented 1 year ago

I found out that you've not inherit nn.Module in ImagePyramid.

was there a specific reason for this?

thanks!

plemeri commented 1 year ago

We did not have any trainable parameter in ImagePyramid, so we did not inherit nn.Module.

Thanks