Package opennlp.tools.ml.model

Examples of opennlp.tools.ml.model.PlainTextFileDataReader


   * the model contents.
   *
   * @param br The BufferedReader containing the model information.
   */
  public PlainTextPerceptronModelReader(BufferedReader br) {
    super(new PlainTextFileDataReader(br));
  }
View Full Code Here


   *
   * @param br
   *          The BufferedReader containing the model information.
   */
  public PlainTextGISModelReader(BufferedReader br) {
    super(new PlainTextFileDataReader(br));
  }
View Full Code Here

TOP

Related Classes of opennlp.tools.ml.model.PlainTextFileDataReader

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.