aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark
diff options
context:
space:
mode:
authorYun Ni <yunn@uber.com>2017-03-01 22:55:13 -0800
committerYanbo Liang <ybliang8@gmail.com>2017-03-01 22:55:13 -0800
commit3bd8ddf7c34be35e5adeb802d6e63120f9f11713 (patch)
treea1af9b06ba0032f79ddda552e39243936386a4e5 /python/pyspark
parentde2b53df4c779b265ae038d88f298786a9236234 (diff)
downloadspark-3bd8ddf7c34be35e5adeb802d6e63120f9f11713.tar.gz
spark-3bd8ddf7c34be35e5adeb802d6e63120f9f11713.tar.bz2
spark-3bd8ddf7c34be35e5adeb802d6e63120f9f11713.zip
[MINOR][ML] Fix comments in LSH Examples and Python API
## What changes were proposed in this pull request? Remove `org.apache.spark.examples.` in Add slash in one of the python doc. ## How was this patch tested? Run examples using the commands in the comments. Author: Yun Ni <yunn@uber.com> Closes #17104 from Yunni/yunn_minor.
Diffstat (limited to 'python/pyspark')
-rwxr-xr-xpython/pyspark/ml/feature.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pyspark/ml/feature.py b/python/pyspark/ml/feature.py
index c2eafbefcd..67c12d8059 100755
--- a/python/pyspark/ml/feature.py
+++ b/python/pyspark/ml/feature.py
@@ -258,7 +258,7 @@ class BucketedRandomProjectionLSH(JavaEstimator, LSHParams, HasInputCol, HasOutp
def __init__(self, inputCol=None, outputCol=None, seed=None, numHashTables=1,
bucketLength=None):
"""
- __init__(self, inputCol=None, outputCol=None, seed=None, numHashTables=1,
+ __init__(self, inputCol=None, outputCol=None, seed=None, numHashTables=1, \
bucketLength=None)
"""
super(BucketedRandomProjectionLSH, self).__init__()