1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

removed default value from LogisticRegression constructor function definition

This commit is contained in:
Rahul Kavi
2013-11-08 20:03:57 -05:00
committed by Maksim Shabunin
parent e7f14f3d0e
commit 65eb52a247
+1 -1
View File
@@ -80,7 +80,7 @@ LogisticRegressionParams::LogisticRegressionParams( double learning_rate, int it
mini_batch_size = mb_size;
}
LogisticRegression::LogisticRegression(const LogisticRegressionParams& pms = LogisticRegressionParams() )
LogisticRegression::LogisticRegression(const LogisticRegressionParams& pms)
{
default_model_name = "my_lr";
this->params = pms;