|
Hi there I am trying to apply Non-negative matrix factorization using scikit-learn [ http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.NMF.html ]. My input data is V here is the code:
After decomposition is done I am ably to access matrix W
How do I access coefficient matrix H ? |
|
I am pretty sure that you can find it in nmf.components_ after you performed fit_transform() Cheers, Gecko |