Skip to content

Commit

Permalink
set PCA recomputation to False by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mumichae committed Apr 22, 2024
1 parent 8c7df11 commit 25fb1bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scib/metrics/pcr.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def pcr_comparison(
embed=None,
n_comps=50,
linreg_method="sklearn",
recompute_pca=True,
recompute_pca=False,
scale=True,
verbose=False,
):
Expand Down Expand Up @@ -95,7 +95,7 @@ def pcr(
covariate,
embed=None,
n_comps=50,
recompute_pca=True,
recompute_pca=False,
linreg_method="sklearn",
verbose=False,
):
Expand Down

0 comments on commit 25fb1bf

Please sign in to comment.