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 is the memory task where a vector is multiplied by the weight matrix of base components for a set of images and the image intensity vector is output as a result
The text was updated successfully, but these errors were encountered:
@MichaelOVertolli I am actually working on a utils function that has the following signature:
SVD_compress(source, to_compress) -> compressed
where source, is a matrix which will be used in determining the SVD compression, to_compress is a list of matrices to be compressed with the SVD compression resulting from taking the SVD of source.
So if you want to do SVD compression the way we were doing it in the old models you would write
You're going to have to explain this more. Also, I found some neat tricks in "Programming Computer Vision in Python" (p. 27) that speed up the algorithm if the dimensionality is high (e.g., using the covariance matrix of XX^T).
It is already written and should be in utils.init. It's called SVDcompressor and is actually a class. Check the documentation, if anything is mysterious. I'd also be glad to help, if things still aren't clear.
This is the memory task where a vector is multiplied by the weight matrix of base components for a set of images and the image intensity vector is output as a result
The text was updated successfully, but these errors were encountered: