Skip to content

Commit bf8f8a0

Browse files
committed
A couple of more 74 column fixes
1 parent cbd9d08 commit bf8f8a0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

python/pyspark/mllib/classification.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ def predict(self, test):
9191
class LogisticRegressionModel(LinearClassificationModel):
9292

9393
"""
94-
Classification model trained using Multinomial/Binary Logistic Regression.
94+
Classification model trained using Multinomial/Binary Logistic
95+
Regression.
9596
9697
:param weights:
9798
Weights computed for every feature.
@@ -191,8 +192,8 @@ def numFeatures(self):
191192
@since('1.4.0')
192193
def numClasses(self):
193194
"""
194-
Number of possible outcomes for k classes classification problem in Multinomial
195-
Logistic Regression.
195+
Number of possible outcomes for k classes classification problem
196+
in Multinomial Logistic Regression.
196197
"""
197198
return self._numClasses
198199

0 commit comments

Comments
 (0)