A package for computing SVD via gradient descent
Project description
GDSVD is a package for computing SVD via gradient descent.
Example usage:
-
Import:
from gdsvd import gdsvd -
Memmap input data, recommended for large datasets
U_true = np.memmap("datasets/ranklogn-exp-500_U.bin", dtype=np.float64, mode='r', shape=(500, 6)) S_true = np.memmap("datasets/ranklogn-exp-500_S.bin", dtype=np.float64, mode='r', shape=(6,)) Vt_true = np.memmap("datasets/ranklogn-exp-500_Vt.bin", dtype=np.float64, mode='r', shape=(6, 500)) M = np.memmap("datasets/ranklogn-exp-500_M.bin", dtype=np.float64, mode='r', shape=(500, 500)) -
Ensure that the arrays are contiguous
U_true = np.ascontiguousarray(U_true) S_true = np.ascontiguousarray(S_true) Vt_true = np.ascontiguousarray(Vt_true) M = np.ascontiguousarray(M) -
To run the method normally:
U,S,Vt = gd_svd(M) -
To run the method with convergence tracking written to conv_out.txt:
U,S,Vt = gd_svd(M, record_conv = 'conv_out.txt', U_true = U_true, S_true = S_true, Vt_true = Vt_true)
gdsvd is implemented as Algorithm 4 in the reference paper.
Included in the package are gdsvd3 (Algorithm 3) and power-method (Algorithm 5), which is the GD method with alternate stopping and the power method, respectively.
Reference: k-SVD via gradient descent
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gdsvd-0.1.1.tar.gz.
File metadata
- Download URL: gdsvd-0.1.1.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f961d0ebb914b7e528b690d04015fc3dc7ce155adf02e62fdace3928ea7d4498
|
|
| MD5 |
165e359b24099cec4c1affc226930a95
|
|
| BLAKE2b-256 |
f54c1ac20f12b1ec04c355abec603c1d995d7dd28254b80d0c7af69195441490
|
File details
Details for the file gdsvd-0.1.1-py3-none-any.whl.
File metadata
- Download URL: gdsvd-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98f1307c46999d7e886f4fd8a91612a24cbaf83f84fae9235315121b0cbbf841
|
|
| MD5 |
78bd4c379014676184727335b7355180
|
|
| BLAKE2b-256 |
82e6deffbe14400ca932da7d6161346aa14ddd32309c61da02a5243adb67006a
|