Skip to content

Commit 81fcbc6

Browse files
committed
Fixing a typo-error.
1 parent 8ad263e commit 81fcbc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/mllib/classification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def predict(self, x):
7474
class LogisticRegressionWithSGD(object):
7575
@classmethod
7676
def train(cls, data, iterations=100, step=1.0, miniBatchFraction=1.0,
77-
initialWeights=None, regParam=1.0, regType=None, intecept=False):
77+
initialWeights=None, regParam=1.0, regType=None, intercept=False):
7878
"""
7979
Train a logistic regression model on the given data.
8080

0 commit comments

Comments
 (0)