blob: b10c5553f0cc77878d74aa16c96e148ff6fa9796 (
plain)
1
2
3
4
5
6
|
for i in $(seq 100 5 180);do
for j in $(seq 20 5 100);do
echo "Testing with M = $i + ${j}R"
python -W ignore train.py -i data.csv -ql -m $i -R $j -e 27 | tee -a test-random.txt
done
done
|