yoheikikuta / senet-keras

Naive implementation of SENet in Keras
MIT License
136 stars 54 forks source link

Can SENet be converted to encoder-decoder architecture? #12

Open jizhang02 opened 4 years ago

jizhang02 commented 4 years ago

Hello, Mr. Kikuta, Thank you for sharing your code of SENet based on Keras. I'm curious if this SENet can be converted to encoder-decoder architecture with skip connections? Just like U-Net which can do the segmentation work? Thank you.

yoheikikuta commented 4 years ago

In principle, YES. See https://arxiv.org/abs/1803.02579 as an example of a combination of the SE block and U-Net. But I have no plan to provide such kind of models in this repository, sorry.

jizhang02 commented 4 years ago

In principle, YES. See https://arxiv.org/abs/1803.02579 as an example of a combination of the SE block and U-Net. But I have no plan to provide such kind of models in this repository, sorry.

Thank you, I will have a look on it.