-
Notifications
You must be signed in to change notification settings - Fork 36
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
Sampling matrix #4
Comments
hi,have you sovled this problem?I’m confused with it, too. If solved, could you please help me with it, thanks!! |
The following code provides a method of generating an M-by-N random Gaussian matrix: import numpy as np
from scipy.linalg import orth
M = 512
N = 1024
Phi = orth(np.random.randn(N, N))[:M]
print(Phi @ Phi.T) |
thanks a lot!! |
你好,采用此代码随机生成的高斯矩阵需要正交化或者其他变化吗,这样训练之后重建的效果好吗 |
Hello! Do the randomly generated Gaussian matrices from this code need to be orthogonalized or otherwise modified? Will the reconstruction quality be good after training? |
1 similar comment
Hello! Do the randomly generated Gaussian matrices from this code need to be orthogonalized or otherwise modified? Will the reconstruction quality be good after training? |
How is the sampling matrix obtained? which algorithm is used? Thanks a lot!
The text was updated successfully, but these errors were encountered: