Skip to content
Snippets Groups Projects
Commit b86db517 authored by Xiangrui Meng's avatar Xiangrui Meng
Browse files

[SPARK-2552][MLLIB] stabilize logistic function in pyspark

to avoid overflow in `exp(x)` if `x` is large.

Author: Xiangrui Meng <meng@databricks.com>

Closes #1493 from mengxr/py-logistic and squashes the following commits:

259e863 [Xiangrui Meng] stabilize logistic function in pyspark
parent 9564f854
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,10 @@ class LogisticRegressionModel(LinearModel):
def predict(self, x):
_linear_predictor_typecheck(x, self._coeff)
margin = _dot(x, self._coeff) + self._intercept
prob = 1/(1 + exp(-margin))
if margin > 0:
prob = 1 / (1 + exp(-margin))
else:
prob = 1 - 1 / (1 + exp(margin))
return 1 if prob > 0.5 else 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