}
public static void main(String[] args) throws IOException {
logger.info("Constructing ARPA file");
ArpaFile arpaFile = new ArpaFile(args[0]);
logger.info("Getting symbol table");
SymbolTable vocab = arpaFile.getVocab();
logger.info("Constructing TrieLM");
TrieLM lm = new TrieLM(arpaFile);
int n = Integer.valueOf(args[2]);