-
-
Notifications
You must be signed in to change notification settings - Fork 23
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
Support Sparse Matrix as Target Matrix #16
Conversation
Codecov Report
@@ Coverage Diff @@
## master #16 +/- ##
==========================================
- Coverage 94.63% 88.63% -6.00%
==========================================
Files 7 7
Lines 671 792 +121
==========================================
+ Hits 635 702 +67
- Misses 36 90 +54
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Seems that training would become very unstable when using |
This PR add the ability to call
fit
andsparse_fit
when target is a 2-dimensionaltorch.sparse_coo_tensor
.This is only valid on
NMF
, other class of NMF will throw not implemented error.