From 4bdeb4f730ffecd33eb6e7d2a45641cf7d589a66 Mon Sep 17 00:00:00 2001 From: leufen1 <l.leufen@fz-juelich.de> Date: Tue, 16 May 2023 12:39:32 +0200 Subject: [PATCH] add excluded parameters --- mlair/run_modules/pre_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlair/run_modules/pre_processing.py b/mlair/run_modules/pre_processing.py index bfb6dd4f..35ab796b 100644 --- a/mlair/run_modules/pre_processing.py +++ b/mlair/run_modules/pre_processing.py @@ -460,7 +460,7 @@ class PreProcessing(RunEnvironment): "neighbors", "plot_list", "plot_path", "regularizer", "restore_best_model_weights", "snapshot_load_path", "snapshot_path", "stations", "tmp_path", "train_model", "transformation", "use_multiprocessing", "cams_data_path", "cams_interp_method", - "do_bias_free_evaluation"] + "do_bias_free_evaluation", "apriori_file", "model_path"] data_handler = self.data_store.get("data_handler") model_class = self.data_store.get("model_class") excluded_params = list(set(excluded_params + data_handler.store_attributes() + model_class.requirements())) -- GitLab