We deal with the problem of zero-shot cross-modal image retrieval involving color and sketch images through a novel deep representation learning technique.
Dear author, thank you for your excellent job!
But when I read your paper and code, I have encountered some problems.
The loss function in your code is not consistent with your paper:
Unified_XY_triads.py, line 411,
cost = 0.1*loss0 + 0*loss3 + 0.1*loss4 + 1*loss5+ loss6 + loss7 #+loss8 # + 0*loss9 # MODEL 2
doesn't have all loss as your paper claims.
In your paper, Section 3.3,
Since we have multiple losses, our problem becomes a non-convex optimization problem. To solve this, we reduce each loss term individually, keeping the other losses constant. The problem transforms into a convex optimization problem for that loss.
I don't understand. Neural Network is a non-convex function itself. Is a possible to change it to convex function by changing the loss function?
Dear author, thank you for your excellent job! But when I read your paper and code, I have encountered some problems.
cost = 0.1*loss0 + 0*loss3 + 0.1*loss4 + 1*loss5+ loss6 + loss7 #+loss8 # + 0*loss9 # MODEL 2
doesn't have all loss as your paper claims.I don't understand. Neural Network is a non-convex function itself. Is a possible to change it to convex function by changing the loss function?