From 386578a603d96872c75c9daaea6d7b7fd0dd5f5b Mon Sep 17 00:00:00 2001 From: Haoyin Xu Date: Tue, 31 Oct 2023 11:20:06 -0400 Subject: [PATCH] FIX improve performance by updating max_features (#161) --- examples/hypothesis_testing/plot_might_mv_auc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hypothesis_testing/plot_might_mv_auc.py b/examples/hypothesis_testing/plot_might_mv_auc.py index 1a7793c0b..d4e573d82 100644 --- a/examples/hypothesis_testing/plot_might_mv_auc.py +++ b/examples/hypothesis_testing/plot_might_mv_auc.py @@ -55,7 +55,7 @@ # You can specify the maximum specificity by modifying ``max_fpr`` in ``statistic``. n_estimators = 125 -max_features = 100 +max_features = "sqrt" metric = "auc" test_size = 0.2 n_jobs = -1