Requires: xvalidate and folddata be in your path.
You can use batchtest with large datasets, but you will need enough disk space to hold 'folds' copies of the largest dataset. Of course, the learners you use with batchtest must also be able to work with the large datasets.
Batchtest expects to find two input files: one that contains descriptions of the datasets it should use, and one that contains descriptions of the learners it should run on them. In these files blank lines are ignored and lines beginning with '#' as the first character on the line are ignored as comments; every other line contains a description of a learner or a dataset. In the dataset file, the description lines have the following format:
[path to the directory holding the dataset] :: [file stem of the dataset]
In the learners file, the description lines should contain the command to run with the appropriate arguments. When batchtest invokes a learner, it will run the exact line from the learners file with the <filestem>
of the current cross-validation fold of the current dataset appended. The learner should be prepared to look for input in in C4.5 format in <filestem>.names
and <filestem>.data
; it should test on the examples in <filestem>.test
and print the following to standard out:
error-rate size
The learner's error rate on the test set, followed by some whitespace, followed by the size of the learned model (in whatever unit you want), followed by a newline.
Batchtest will collect the output of the runs of the learners, average them and report:
mean-error-rate (standard deviation of error rate) mean-size (standard deviation of size) average-utime (standard deviation of utime) average-stime (standard deviation of stime)
for example:
26.111 (5.500) 0.000 (0.000) 0.013 (0.005) 0.010 (0.008)
The times are very accurate on UNIX. Under CYGNUS (windows) utime will be a good estimate, but not as accurate and stime will be zero.
Contents of datasets file:
# Here are the datasets<br> ../../datasets/mushroom/ :: mushroom ../../datasets/voting/ :: voting
Contents of the learners file:
<p># A simple learner to set a baseline mostcommonclass -u -f # My fancy learner with a couple different parameter sets deep-thought -tc 4.7 -e 1.1 -u -f deep-thought -tc 2 -e 5 -u -f
batchtest -data datasets -learn learners -folds 15 -seed 100
Does 15-fold cross-validation of the learners in the learners file on the datasets in the datasets file. It will use a seeded random number generator so the exact experiment could be reproduced. The actual calls to the learners will look something like this:
mostcommonclass -u -f mushroom0 mostcommonclass -u -f mushroom1 mostcommonclass -u -f mushroom2 ... deep-thought -tc 4.7 -e 1.1 -u -f mushroom0 deep-thought -tc 4.7 -e 1.1 -u -f mushroom1 ... etc...
You should see the using-batchtest example for a more detailed example complete with sample -data and -learn files.