Commit 65eb52a2 authored by Rahul Kavi's avatar Rahul Kavi Committed by Maksim Shabunin

removed default value from LogisticRegression constructor function definition

parent e7f14f3d
......@@ -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;
......
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