Skip to content
Snippets Groups Projects
Commit 3e91cc27 authored by wizz's avatar wizz Committed by Joseph K. Bradley
Browse files

[SPARK-7085][MLlib] Fix miniBatchFraction parameter in train method called with 4 arguments

Author: wizz <wizz@wizz-dev01.kawasaki.flab.fujitsu.com>

Closes #5658 from kuromatsu-nobuyuki/SPARK-7085 and squashes the following commits:

6ec2d21 [wizz] Fix miniBatchFraction parameter in train method called with 4 arguments
parent 6afde2c7
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,7 @@ object RidgeRegressionWithSGD {
numIterations: Int,
stepSize: Double,
regParam: Double): RidgeRegressionModel = {
train(input, numIterations, stepSize, regParam, 0.01)
train(input, numIterations, stepSize, regParam, 1.0)
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment