Skip to content
Snippets Groups Projects
Commit f5f984f4 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Do not use BernoulliWeibullloss for LR-range test.

parent 45cd5f33
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment