Skip to content

Commit

Permalink
Changing the random sate
Browse files Browse the repository at this point in the history
  • Loading branch information
fujiisoup committed Jul 21, 2024
1 parent 567cfd7 commit 15aaa47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_incremental_pca.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ def test_singular_values(svd_solver):
def test_whitening(svd_solver):
# Test that PCA and IncrementalPCA transforms match to sign flip.
X = datasets.make_low_rank_matrix(
1000, 10, tail_strength=0.0, effective_rank=2, random_state=1999
1000, 10, tail_strength=0.0, effective_rank=2, random_state=1998
)
X = da.from_array(X, chunks=[200, -1])
prec = 3
Expand Down

0 comments on commit 15aaa47

Please sign in to comment.