diff --git a/Scripts/lr_range_test.sh b/Scripts/lr_range_test.sh
index 780d680bc3a773ce2e51e302264bfe5f702d77d7..822cf118d4daf4e6cd3d83808bef023c7eba2264 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