From 3395ab032b96d10f047090a791486b7780fe8049 Mon Sep 17 00:00:00 2001 From: leufen1 <l.leufen@fz-juelich.de> Date: Fri, 8 Apr 2022 14:52:53 +0200 Subject: [PATCH] just moved single arg to kwargs for better clarity, \close #359 --- mlair/run_modules/post_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlair/run_modules/post_processing.py b/mlair/run_modules/post_processing.py index 7a338b2f..8f6bf05d 100644 --- a/mlair/run_modules/post_processing.py +++ b/mlair/run_modules/post_processing.py @@ -111,7 +111,7 @@ class PostProcessing(RunEnvironment): # sample uncertainty if self.data_store.get("do_uncertainty_estimate", "postprocessing"): - self.estimate_sample_uncertainty(True) + self.estimate_sample_uncertainty(separate_ahead=True) # feature importance bootstraps if self.data_store.get("evaluate_feature_importance", "postprocessing"): -- GitLab