Skip to content

Commit

Permalink
simplify steering script
Browse files Browse the repository at this point in the history
  • Loading branch information
mieskolainen committed Oct 18, 2024
1 parent be47fb3 commit f2adbc2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/runme_zee.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ DATAPATH="./travis-stash/input/icezee"

if [ ${maxevents+x} ]; then MAX="--maxevents $maxevents"; else MAX=""; fi

for CONFIG in "tune0_EEp.yml" # "tune0_EB.yml" "tune0_EEm.yml"
for CONFIG in "tune0_EEp" # "tune0_EB" "tune0_EEm"
do
python analysis/zee.py --runmode "genesis" $MAX --config $CONFIG --datapath $DATAPATH --hash_genesis "minimal_${CONFIG}"
python analysis/zee.py --runmode "train" $MAX --config $CONFIG --datapath $DATAPATH --hash_genesis "minimal_${CONFIG}" --hash_post_genesis "minimal_${CONFIG}__train"
python analysis/zee.py --runmode "eval" $MAX --config $CONFIG --datapath $DATAPATH --hash_genesis "minimal_${CONFIG}" --hash_post_genesis "minimal_${CONFIG}__eval" --evaltag "mytest"
python analysis/zee.py --runmode "genesis" $MAX --config "${CONFIG}.yml" --datapath $DATAPATH --hash_genesis "minimal_${CONFIG}"
python analysis/zee.py --runmode "train" $MAX --config "${CONFIG}.yml" --datapath $DATAPATH --hash_genesis "minimal_${CONFIG}" --hash_post_genesis "minimal_${CONFIG}__train"
python analysis/zee.py --runmode "eval" $MAX --config "${CONFIG}.yml" --datapath $DATAPATH --hash_genesis "minimal_${CONFIG}" --hash_post_genesis "minimal_${CONFIG}__eval" --evaltag "mytest"
done

0 comments on commit f2adbc2

Please sign in to comment.