aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/ml/feature.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyspark/ml/feature.py')
-rw-r--r--python/pyspark/ml/feature.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/python/pyspark/ml/feature.py b/python/pyspark/ml/feature.py
index c7b6dd926c..b02d41b52a 100644
--- a/python/pyspark/ml/feature.py
+++ b/python/pyspark/ml/feature.py
@@ -1788,21 +1788,21 @@ class Word2Vec(JavaEstimator, HasStepSize, HasMaxIter, HasSeed, HasInputCol, Has
+----+--------------------+
|word| vector|
+----+--------------------+
- | a|[-0.3511952459812...|
- | b|[0.29077222943305...|
- | c|[0.02315592765808...|
+ | a|[0.09461779892444...|
+ | b|[1.15474212169647...|
+ | c|[-0.3794820010662...|
+----+--------------------+
...
>>> model.findSynonyms("a", 2).show()
- +----+-------------------+
- |word| similarity|
- +----+-------------------+
- | b|0.29255685145799626|
- | c|-0.5414068302988307|
- +----+-------------------+
+ +----+--------------------+
+ |word| similarity|
+ +----+--------------------+
+ | b| 0.16782984556103436|
+ | c|-0.46761559092107646|
+ +----+--------------------+
...
>>> model.transform(doc).head().model
- DenseVector([-0.0422, -0.5138, -0.2546, 0.6885, 0.276])
+ DenseVector([0.5524, -0.4995, -0.3599, 0.0241, 0.3461])
.. versionadded:: 1.4.0
"""