From 8995921cc5597962b4e8a0b2ee5433ee4594aff1 Mon Sep 17 00:00:00 2001 From: Rahul Kavi Date: Tue, 5 Nov 2013 06:05:29 -0500 Subject: [PATCH] fixed white space in logistic regression classifier --- modules/ml/src/lr.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/ml/src/lr.cpp b/modules/ml/src/lr.cpp index 6ac863876..cc129f70d 100644 --- a/modules/ml/src/lr.cpp +++ b/modules/ml/src/lr.cpp @@ -177,7 +177,6 @@ bool LogisticRegression::train(cv::InputArray data_ip, cv::InputArray labels_ip) { new_local_labels = (labels_l == it->second)/255; new_local_labels.convertTo(labels, CV_32F); - // new_theta = compute_batch_gradient(data_t, labels, init_theta); // currently supported training methods LogisticRegression::BATCH and LogisticRegression::MINI_BATCH if(this->params.train_method == LogisticRegression::BATCH)