Files
stree_datasets/scripts/genall.sh
Ricardo Montañana f3afcd00ba Add tunnel to mysql
add any kernel to script generator
2020-12-10 17:23:07 +01:00

9 lines
221 B
Bash
Executable File

#!/bin/bash
for i in gridsearch gridbest cross; do
echo "*** Building $i experiments"
for j in stree odte bagging adaBoost; do
for k in linear poly rbf any; do
./genjobs.sh $i $j $k
done
done
done