From f5f984f47ef113c248a82cc3f24298e6a7bc872d Mon Sep 17 00:00:00 2001
From: "Daniel.Frisinghelli" <daniel.frisinghelli@eurac.edu>
Date: Tue, 26 Oct 2021 14:49:14 +0200
Subject: [PATCH] Do not use BernoulliWeibullloss for LR-range test.

---
 Scripts/lr_range_test.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Scripts/lr_range_test.sh b/Scripts/lr_range_test.sh
index 780d680..822cf11 100644
--- a/Scripts/lr_range_test.sh
+++ b/Scripts/lr_range_test.sh
@@ -7,7 +7,8 @@ conda activate climax
 cd ~/git/climax
 
 # predictands
-PREDICTAND=(pr tasmin tasmax)
+# PREDICTAND=(pr tasmin tasmax)
+PREDICTAND=(pr)
 
 # iterate over predictands
 for predictand in ${PREDICTAND[@]}; do
@@ -17,7 +18,7 @@ for predictand in ${PREDICTAND[@]}; do
 
     # define available loss functions for current predictand
     if [ "$predictand" = "pr" ]; then
-        LOSS=(L1Loss BernoulliGammaLoss BernoulliWeibullLoss MSELoss)
+        LOSS=(L1Loss BernoulliGammaLoss MSELoss)
     else
         LOSS=(L1Loss MSELoss)
     fi
-- 
GitLab