HyukjinKwon commented on pull request #32533:
URL: https://github.com/apache/spark/pull/32533#issuecomment-840509011
@zhengruifeng would you mind fixing:
```
**********************************************************************
File "/__w/spark/spark/python/pyspark/ml/feature.py", line 4681, in
__main__.Word2Vec
Failed example:
model.getVectors().show()
Expected:
+----+--------------------+
|word| vector|
+----+--------------------+
| a|[0.09511678665876...|
| b|[-1.2028766870498...|
| c|[0.30153277516365...|
+----+--------------------+
...
Got:
+----+--------------------+
|word| vector|
+----+--------------------+
| a|[0.09511695802211...|
| b|[-1.2028766870498...|
| c|[0.30153274536132...|
+----+--------------------+
<BLANKLINE>
**********************************************************************
```
too? feel free to change the JIRA.
I think we can just fix it like:
```
+----+--------------------+
|word| vector|
+----+--------------------+
| a|[0.0951 ...
| b|[-1.202 ...
| c|[0.3015 ...
+----+--------------------+
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]