Commit d35d27bf authored by Davis King's avatar Davis King

Added missing std:: qualifier.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402890
parent ed52af22
......@@ -156,7 +156,7 @@ namespace dlib
w.train(x, 1 - learning_rate*lambda, y*learning_rate);
scalar_type wnorm = std::sqrt(w.squared_norm());
scalar_type temp = (1/sqrt(lambda))/(wnorm);
scalar_type temp = (1/std::sqrt(lambda))/(wnorm);
if (temp < 1)
w.scale_by(temp);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment