Skip to content

Commit

Permalink
default line search to False (can be slow)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameschapman19 committed Feb 17, 2023
1 parent c45819b commit f628f0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cca_zoo/test/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def test_sparse_methods():


def test_pls():
pls_als = PLS_ALS(latent_dims=3)
pls_als = PLS_ALS(latent_dims=3, random_state=0)
pls = PLS(latent_dims=3)
pls_als.fit((X, Y))
pls.fit((X, Y))
Expand Down

0 comments on commit f628f0e

Please sign in to comment.