Skip to content
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

Use full_matrices=False #23

Open
TomA106 opened this issue Dec 22, 2024 · 1 comment
Open

Use full_matrices=False #23

TomA106 opened this issue Dec 22, 2024 · 1 comment

Comments

@TomA106
Copy link

TomA106 commented Dec 22, 2024

on line 80 you've got

self.P, self.s, self.Q = svd(product)

If you change it to

self.P, self.s, self.Q = svd(product, full_matrices=False)

It's faster and can handle much larger datasets

@esafak
Copy link
Owner

esafak commented Dec 22, 2024

That breaks the tests. Disabling full_matrices changes the size of the returned matrices, so there must be other things that need to be changed too. Please markup #24 with the necessary changes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants