-
Notifications
You must be signed in to change notification settings - Fork 28.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SPARK-7604] [MLlib] Python API for PCA and PCAModel #6315
Conversation
Test build #33231 has finished for PR 6315 at commit
|
:param vector: Vector or RDD of Vector to be transformed. | ||
:return: transformed vector. | ||
""" | ||
return JavaVectorTransformer.transform(self, vector) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the default behavior, so you could not have transform()
in PCAModel
. (just remove transform() here)
Test build #33343 has finished for PR 6315 at commit
|
LGTM sorry for the delay! |
test this please |
Test build #35403 has finished for PR 6315 at commit
|
Merging with master Thanks! |
Python API for PCA and PCAModel