rasmushaugaard / surfemb

SurfEmb (CVPR 2022)
https://surfemb.github.io/
MIT License
77 stars 17 forks source link

About the implementation of Unet. #16

Closed LeroyChou closed 2 years ago

LeroyChou commented 2 years ago

Hi, thank you for your great work! I notice that your implementation of Unet is a little different from the original one. in this line you feed the data from "contracting path" into a convrelu before catenating it with current data from "expansive path", which you do in the next line. But the author of Unet merely copy it, with no furthur process. So what's the reason you do in such manner?

rasmushaugaard commented 2 years ago

Hi, thanks! The Unet implementation is based on this one (stated in the top of the file). Adding these 1x1 convolutions is not our contribution.

LeroyChou commented 2 years ago

I got it. Thank you!