aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/mllib/classification.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyspark/mllib/classification.py')
-rw-r--r--python/pyspark/mllib/classification.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/pyspark/mllib/classification.py b/python/pyspark/mllib/classification.py
index 57106f8690..fe5b6844bf 100644
--- a/python/pyspark/mllib/classification.py
+++ b/python/pyspark/mllib/classification.py
@@ -16,6 +16,7 @@
#
from math import exp
+import warnings
import numpy
from numpy import array
@@ -266,6 +267,8 @@ class LogisticRegressionModel(LinearClassificationModel):
class LogisticRegressionWithSGD(object):
"""
.. versionadded:: 0.9.0
+ .. note:: Deprecated in 2.0.0. Use ml.classification.LogisticRegression or
+ LogisticRegressionWithLBFGS.
"""
@classmethod
@since('0.9.0')
@@ -312,6 +315,10 @@ class LogisticRegressionWithSGD(object):
A condition which decides iteration termination.
(default: 0.001)
"""
+ warnings.warn(
+ "Deprecated in 2.0.0. Use ml.classification.LogisticRegression or "
+ "LogisticRegressionWithLBFGS.")
+
def train(rdd, i):
return callMLlibFunc("trainLogisticRegressionModelWithSGD", rdd, int(iterations),
float(step), float(miniBatchFraction), i, float(regParam), regType,