Skip to content

Commit b53df27

Browse files
author
Ben Cook
committed
incremental_svd2.py updated
1 parent ed1ba5c commit b53df27

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

incremental_svd2.py

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212

1313
def incremental_SVD(X, K, num, by_row=True):
14+
'''
15+
Takes a vector of k values!
16+
'''
1417
if by_row:
1518
u, s, v = np.linalg.svd(X[:num, :])
1619

0 commit comments

Comments
 (0)