提交 518fd59a 编写于 作者: I ippei ito

fixed whitespace error

上级 49b38fe7
......@@ -322,7 +322,7 @@ double LogisticRegressionImpl::compute_cost(const Mat& _data, const Mat& _labels
theta_b = _init_theta(Range(1, n), Range::all());
multiply(theta_b, theta_b, theta_c, 1);
if (params.norm != REG_DISABLE)
if (params.norm != REG_DISABLE)
{
llambda = 1;
}
......@@ -377,7 +377,7 @@ Mat LogisticRegressionImpl::compute_batch_gradient(const Mat& _data, const Mat&
m = _data.rows;
n = _data.cols;
if (params.norm != REG_DISABLE)
if (params.norm != REG_DISABLE)
{
llambda = 1;
}
......@@ -449,7 +449,7 @@ Mat LogisticRegressionImpl::compute_mini_batch_gradient(const Mat& _data, const
Mat data_d;
Mat labels_l;
if (params.norm != REG_DISABLE)
if (params.norm != REG_DISABLE)
{
lambda_l = 1;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册