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
Hi, I noticed that the output of principal components should be (np.argmax(var > p) + 1).astype(np.float32) instead of np.argmax(var > p) due to zero-based index. Just a minor error when visualizing the true number of principal components.
Hi, I noticed that the output of principal components should be
(np.argmax(var > p) + 1).astype(np.float32)instead ofnp.argmax(var > p)due to zero-based index. Just a minor error when visualizing the true number of principal components.