aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/mllib/classification.py
diff options
context:
space:
mode:
authorYanbo Liang <ybliang8@gmail.com>2015-06-25 08:13:17 -0700
committerXiangrui Meng <meng@databricks.com>2015-06-25 08:13:17 -0700
commit2519dcc33bde3a6d341790d73b5d292ea7af961a (patch)
tree8dbc6ff4dc5de6a3e3589b981dc7521ca926a4d5 /python/pyspark/mllib/classification.py
parentf9b397f54d1c491680d70aba210bb8211fd249c1 (diff)
downloadspark-2519dcc33bde3a6d341790d73b5d292ea7af961a.tar.gz
spark-2519dcc33bde3a6d341790d73b5d292ea7af961a.tar.bz2
spark-2519dcc33bde3a6d341790d73b5d292ea7af961a.zip
[MINOR] [MLLIB] rename some functions of PythonMLLibAPI
Keep the same naming conventions for PythonMLLibAPI. Only the following three functions is different from others ```scala trainNaiveBayes trainGaussianMixture trainWord2Vec ``` So change them to ```scala trainNaiveBayesModel trainGaussianMixtureModel trainWord2VecModel ``` It does not affect any users and public APIs, only to make better understand for developer and code hacker. Author: Yanbo Liang <ybliang8@gmail.com> Closes #7011 from yanboliang/py-mllib-api-rename and squashes the following commits: 771ffec [Yanbo Liang] rename some functions of PythonMLLibAPI
Diffstat (limited to 'python/pyspark/mllib/classification.py')
-rw-r--r--python/pyspark/mllib/classification.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pyspark/mllib/classification.py b/python/pyspark/mllib/classification.py
index 2698f10d06..735d45ba03 100644
--- a/python/pyspark/mllib/classification.py
+++ b/python/pyspark/mllib/classification.py
@@ -581,7 +581,7 @@ class NaiveBayes(object):
first = data.first()
if not isinstance(first, LabeledPoint):
raise ValueError("`data` should be an RDD of LabeledPoint")
- labels, pi, theta = callMLlibFunc("trainNaiveBayes", data, lambda_)
+ labels, pi, theta = callMLlibFunc("trainNaiveBayesModel", data, lambda_)
return NaiveBayesModel(labels.toArray(), pi.toArray(), numpy.array(theta))