From c60702bef5ca4a5a294b093fc5e6b2257b8cf283 Mon Sep 17 00:00:00 2001 From: "Daniel.Frisinghelli" <daniel.frisinghelli@eurac.edu> Date: Wed, 6 Oct 2021 09:46:12 +0200 Subject: [PATCH] Added configuration file. --- climax/main/config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/climax/main/config.py b/climax/main/config.py index 7e86890..dcc14f2 100644 --- a/climax/main/config.py +++ b/climax/main/config.py @@ -55,6 +55,11 @@ DEM_FEATURES = False # stratify training/validation set for precipitation by number of wet days STRATIFY = True +# size of the validation set w.r.t. the training set +# e.g., VALID_SIZE = 0.1 means: 90% of CALIB_PERIOD for training +# 10% of CALIB_PERIOD for validation +VALID_SIZE = 0.1 + # whether to train using cross-validation CV = False -- GitLab