#!/bin/sh

if [ -f ../ngram-count-gt/swbd.3bo.gz ]; then
	gz=.gz
else
	gz=
fi

echo "I AM HERE" | \
ngram -debug 2 \
	-vocab-aliases vocab.aliases \
	-lm ../ngram-count-gt/swbd.3bo$gz \
	-ppl -

