Hello!Thanks for this nice work!
I think there is a little different between the code of multi-task loss and the formula in the original paper.
In the paper, the weight of each task should be:
w = torch.exp(-s^2)
However, in this line of code
|
w = torch.exp(-s) # weighting (class.) |
w = torch.exp(-s)
Could you tell me why?
Best regards!
Hello!Thanks for this nice work!
I think there is a little different between the code of multi-task loss and the formula in the original paper.
In the paper, the weight of each task should be:
w = torch.exp(-s^2)
However, in this line of code
MultiDepth/train.py
Line 267 in 7478d35
w = torch.exp(-s)
Could you tell me why?
Best regards!