-
Notifications
You must be signed in to change notification settings - Fork 202
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
Error in dual task loss? #64
Comments
The code is not working for me I tried to solved the code inside dualtaskloss as follows:
However, |
Hi, @tovacinni
Thanks for your work, I have a question about the implementation of dual task loss in loss.py. I think the dual task loss should take the estimation from classical stream N, K, H, W and the edge prediction from shape stream N, 1, H, W as inputs, but in loss.py, the dual task loss actually takes segmentation estimation and segmentation lable as inputs:
losses['dual_loss'] = self.dual_weight * self.dual_task(segin, segmask)
Is this a bug or what?
The text was updated successfully, but these errors were encountered: