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
Is each column of the input data matrix one sample? and it has more features than samples? i.e. 20000x20 matrix (20000 features, 20 samples). The eigenvectors is size (20000,20), eigenvalues is s**2, size (20,)?
What is the input w, X, in here?
def reconstruct(w, X, m,dim = 5):
return np.dot(w[:dim],X[:dim,:]) + m
Hi, I have couple questions
w, X,in here?