#!/bin/csh

if ($#argv != 3) then
   echo "Usage: fz task stoplist token"
   echo "only to be used with majority classifier, zeror"
   exit 1
endif   

set stoplist=$2
set token=$3
 
# feature set consists of words that occur more than 10000 times,
# so we get a nearly empty feature set

gram1 $1 10000 $stoplist $token

echo "fz finished"



