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.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/python/pyspark/mllib/classification.py b/python/pyspark/mllib/classification.py
index 3734f87405..9f53ed0982 100644
--- a/python/pyspark/mllib/classification.py
+++ b/python/pyspark/mllib/classification.py
@@ -48,8 +48,6 @@ class LinearClassificationModel(LinearModel):
@since('1.4.0')
def setThreshold(self, value):
"""
- .. note:: Experimental
-
Sets the threshold that separates positive predictions from
negative predictions. An example with prediction score greater
than or equal to this threshold is identified as a positive,
@@ -62,8 +60,6 @@ class LinearClassificationModel(LinearModel):
@since('1.4.0')
def threshold(self):
"""
- .. note:: Experimental
-
Returns the threshold (if any) used for converting raw
prediction scores into 0/1 predictions. It is used for
binary classification only.
@@ -73,8 +69,6 @@ class LinearClassificationModel(LinearModel):
@since('1.4.0')
def clearThreshold(self):
"""
- .. note:: Experimental
-
Clears the threshold so that `predict` will output raw
prediction scores. It is used for binary classification only.
"""