We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbd9d08 commit bf8f8a0Copy full SHA for bf8f8a0
python/pyspark/mllib/classification.py
@@ -91,7 +91,8 @@ def predict(self, test):
91
class LogisticRegressionModel(LinearClassificationModel):
92
93
"""
94
- Classification model trained using Multinomial/Binary Logistic Regression.
+ Classification model trained using Multinomial/Binary Logistic
95
+ Regression.
96
97
:param weights:
98
Weights computed for every feature.
@@ -191,8 +192,8 @@ def numFeatures(self):
191
192
@since('1.4.0')
193
def numClasses(self):
194
- Number of possible outcomes for k classes classification problem in Multinomial
195
- Logistic Regression.
+ Number of possible outcomes for k classes classification problem
196
+ in Multinomial Logistic Regression.
197
198
return self._numClasses
199
0 commit comments