|
From: Herton R. K. <he...@us...> - 2005-06-24 05:06:22
|
Update of /cvsroot/kimageprocess/kimageprocess/batchtests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12115/batchtests Added Files: test Log Message: - Added batchtests, script and files to test neural networks in batch mode. - testclass now is installed on the system with make install. --- NEW FILE: test --- #!/bin/sh -x FANN_ACT="FANN_THRESHOLD \ FANN_THRESHOLD_SYMMETRIC \ FANN_LINEAR \ FANN_SIGMOID \ FANN_SIGMOID_STEPWISE \ FANN_SIGMOID_SYMMETRIC \ FANN_SIGMOID_SYMMETRIC_STEPWISE" TESTS="2texturas" mkdir -p results for test in $TESTS; do source $test/img.size for act in $FANN_ACT; do testclass -t $test/train.pat -c $test/class.pat \ -r results/$test_$act.res -a $act res2pgm -r results/$test_$act.res -p results/$test_$act.pgm \ -w $WIDTH -h $HEIGHT done done |