Skip to content

Commit 4499639

Browse files
authored
Update BOSS.py
1 parent 2a01a86 commit 4499639

File tree

1 file changed

+2
-2
lines changed
  • causallearn/search/PermutationBased

1 file changed

+2
-2
lines changed

causallearn/search/PermutationBased/BOSS.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ def boss(
9595
)
9696
elif score_func == "local_score_BIC":
9797
# SEM BIC score
98-
warnings.warn("Please use 'local_score_BIC_from_cov' instead")
98+
warnings.warn("Using 'local_score_BIC_from_cov' instead for efficiency")
9999
if parameters is None:
100100
parameters = {"lambda_value": 2}
101101
localScoreClass = LocalScoreClass(
102-
data=X, local_score_fun=local_score_BIC, parameters=parameters
102+
data=X, local_score_fun=local_score_BIC_from_cov, parameters=parameters
103103
)
104104
elif score_func == "local_score_BIC_from_cov":
105105
# SEM BIC score

0 commit comments

Comments
 (0)