-
Notifications
You must be signed in to change notification settings - Fork 540
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
[BUG] prms.whiten is modifying the components in PCA during transform() and inverse_transform() #2830
Comments
This issue has been marked rotten due to no recent activity in the past 90d. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. |
This issue has been marked stale due to no recent activity in the past 30d. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. This issue will be marked rotten if there is no activity in the next 60d. |
@divyegala just wanted to ask since you're assigned if you have any updates on the status of this? |
@dantegd sorry, no updates! Is it something we are trying to get in for 21.06? |
…4099) closes #2830 Authors: - Divye Gala (https://github.com/divyegala) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: #4099
…apidsai#4099) closes rapidsai#2830 Authors: - Divye Gala (https://github.com/divyegala) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: rapidsai#4099
I noticed this while investigating #2804. After training, nothing should be modifying the trained parameters, however, when
whiten=True
, the components are being modified intransform()
andinverse_transform()
.In this case, we should either be making a copy of the components, or possibly figure out how to perform the operations directly on the output.
The text was updated successfully, but these errors were encountered: