Skip to content

Commit 5f9e70f

Browse files
committed
fix py lir
1 parent f8782a4 commit 5f9e70f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/ml/regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class _LinearRegressionParams(_PredictorParams, HasRegParam, HasElasticNetParam,
107107
def __init__(self, *args):
108108
super(_LinearRegressionParams, self).__init__(*args)
109109
self._setDefault(maxIter=100, regParam=0.0, tol=1e-6, loss="squaredError", epsilon=1.35,
110-
blockSize=1)
110+
maxBlockSizeInMB=0.0)
111111

112112
@since("2.3.0")
113113
def getEpsilon(self):

0 commit comments

Comments
 (0)