#! /bin/bash if [ -z $SEMINER_ROOT ]; then SEMINER_ROOT=`pwd` fi case $1 in "raw") cut -d' ' -f1 |\ $SEMINER_ROOT/bin/augment brown False \ $SEMINER_ROOT/data/seminer/deu.eci.unlabeled.500+1000.classes |\ $SEMINER_ROOT/bin/sequor predict \ $SEMINER_ROOT/data/seminer/deu.train.lrec-2010-raw.model ;; "full") cut -d' ' -f1,2,3,4 |\ $SEMINER_ROOT/bin/augment brown False \ $SEMINER_ROOT/data/seminer/deu.eci.unlabeled.500+1000.classes |\ $SEMINER_ROOT/bin/sequor predict \ $SEMINER_ROOT/data/seminer/deu.train.lrec-2010.model ;; esac