We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6890d92 commit eea2083Copy full SHA for eea2083
1 file changed
sklearn/decomposition/tests/test_truncated_svd.py
@@ -243,7 +243,7 @@ def test_singular_values():
243
random_state=rng)
244
X_apca = apca.fit_transform(X)
245
X_rpca = rpca.fit_transform(X)
246
- X_lpca = rpca.fit_transform(X)
+ X_lpca = lpca.fit_transform(X)
247
248
X_apca /= np.sqrt(np.sum(X_apca**2.0, axis=0))
249
X_rpca /= np.sqrt(np.sum(X_rpca**2.0, axis=0))
0 commit comments