1
0
Fork 0

Collaborative Filtering Cost

This commit is contained in:
neingeist 2014-11-27 23:31:49 +01:00
parent 87457bb7b4
commit fc28204594

View file

@ -40,19 +40,7 @@ Theta_grad = zeros(size(Theta));
% partial derivatives w.r.t. to each element of Theta
%
J = 0.5 * sum(sum(R.*(X*Theta'-Y).^2));
% =============================================================