From ec333fc105fe3e574ee177f08b690e7ddb115536 Mon Sep 17 00:00:00 2001 From: Camille Troillard Date: Wed, 19 Jun 2024 17:57:45 +0200 Subject: [PATCH] FIX incorrect path in generated model card --- examples/plot_model_card.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/plot_model_card.py b/examples/plot_model_card.py index ca6c57a6..445dfecb 100644 --- a/examples/plot_model_card.py +++ b/examples/plot_model_card.py @@ -158,7 +158,7 @@ model_card.add_permutation_importances( importances, X_test.columns, - plot_file=Path(local_repo) / "importance.png", + plot_file="importance.png", plot_name="Permutation Importance", )