Created
December 19, 2018 18:07
-
-
Save RyotaBannai/2543abba7900ba317f20e6a748d317d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
U, s, Vt = LA.svd(face_data, full_matrices=False) | |
S = np.diag(s) | |
#U: 500 *500, S: 500 *500, Vt:500 *2914 | |
dim = 100 | |
US = U[:, 0:dim].dot(S[0:dim, 0:dim]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment