You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added ability to plot both silhouttes of latent patterns (W matrix) and the latent clusters (H matrix) to assist selecting the number of hidden patterns and the corresponding number of hidden clusters.
predict_k_method default is changed to "sill".
NMFk plot will no longer include the blue relative error line when calculate_error=False.
New predict_k_method="sill" will predict k based on:
The maximum k where W silhoutte is above the threshold sill_thresh: Wk
The maximum k where H silhoutte is above the threshold sill_thresh: Hk
Final k, or number of hidden signals, will be k=min(Wk, Hk).