comparison toolboxes/distance_learning/mlr/loss/lossHinge.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 function Xi = lossHinge(W, Psi, M, gradient)
2 %
3 % Xi = lossHinge(W, Psi, M, gradient)
4 %
5 % W: d*d metric
6 % Psi: d*d feature matrix
7 % M: the desired margin
8 % gradient: if 0, returns the loss value
9 % if 1, returns the gradient of the loss WRT W
10
11 Xi = max(0, M - sum(sum(W .* Psi)));
12
13 if gradient & Xi > 0
14 Xi = -Psi;
15 end
16 end