-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using "segmentation_models_pytorch" with Unet++ #4
Comments
Hi @alqurri77, I didn't write the initial smp implementation of UNet++ or the tutorial but I think you're right that the model should be able to optionally return the intermediate outputs for deep supervision. I'll make an issue and get a PR going for this. Stay tuned! Thanks! |
Thank you very much, Issac! |
Hi @alqurri77 , I'm commenting to add infos and specify what we need to be implement. A couple of references:
|
Yes, my initial thoughts for this are to have an optional arg which tells the decoder and overall model to return the encoder and intermediate decoder outputs in the forward call. |
Yes, that sounds good! @notprime @isaaccorley |
was trying to use segmentation_models_pytorch with Unet++. I tried to look at the example at HuBMAP - Pytorch smp Unet++. My understanding Unet++ returns 4 outputs (as part of deep supervision). But in the example, I notice it is only returning one output. I think I'm missing something here.
The text was updated successfully, but these errors were encountered: