#!/bin/csh -f # ====================================================================== # David W. Aha # 5/13/1993 # Example call of the IBL system # # The above is a call to the IBL system. The training and test files are # from the 24-attribute LED Display domain. After each 25 training instances, # a report is given on the progress of the algorithm. Testing is done # after each 200 training instances. This call cycles through all four # algorithms, but otherwise uses the default parameters # # Algorithm names: # IB1 = Proximity, IB2 = Growth, IB3 = NTGrowth, IB4 = Bloom # ====================================================================== set algorithm = 1 while ($algorithm <= 4) echo -n 'Algorithm IB' echo -n $algorithm echo ':' ibl descriptionfile namesfile trainfile testfile outfile.ib$algorithm 2938 -testrate 25 -reportrate 25 -ib$algorithm -signif_accept 90 @ algorithm = $algorithm + 1 end