Package edu.stanford.nlp.lm

Examples of edu.stanford.nlp.lm.SRILanguageModel


  public NgramRanker(final String lmfile, int beamsize, String ngramtype) {
    this.lmfile = lmfile;
    this.beamsize = beamsize;
    this.ngramtype = ngramtype;

    this.sriLM = new SRILanguageModel(new File(lmfile), 3);
  }
View Full Code Here

TOP

Related Classes of edu.stanford.nlp.lm.SRILanguageModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.