Files
stree_datasets/scripts/genall.sh

9 lines
217 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; do
./genjobs.sh $i $j $k
done
done
done