#!/bin/sh

# performance (just go forward)
echo "Performance Test..."
time detect -f 10000

# learn
echo ""
echo "Learn..."
time detect -l -s 1000 -t 10 100 0.2

# test
echo "Test..."
detect Network.Finished -P 0.5 -f 1000

# get the weight vector
detect < detect.cmd

# plot it with gnuplot3.0
echo This may not work if you do not have gnuplot 3.0
gnuplot detect.gnu


