public ParserTagger(String modelFile, String tagDictionary, boolean useCase, Dictionary dict) throws IOException {
this(modelFile,K,dict,tagDictionary,useCase,K);
}
public ParserTagger(String modelFile, int beamSize, Dictionary dict, String tagDictionary, boolean useCase, int cacheSize) throws IOException {
super(beamSize, new SuffixSensitiveGISModelReader(new File(modelFile)).getModel(), new DefaultPOSContextGenerator(cacheSize,dict), new POSDictionary(tagDictionary, useCase));
this.beamSize = beamSize;
}