I assume you define the loss layer as
layer {
name: "tripletLoss"
type: "TripletLoss"
bottom: "anchor"
bottom: "positive"
bottom: "negative"
...
}
Now you need to compute a gradient w.r.t each of the "bottom"s.
The loss is given by:
The gradient w.r.t the "anchor" input (fa
):
The gradient w.r.t the "positive" input (fp
):
The gradient w.r.t the "negative" input (fn
):
The original calculation (I leave here for sentimental reasons...)
Please see comment correcting the last term.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…