Package com.clearnlp.classification.algorithm

Examples of com.clearnlp.classification.algorithm.AbstractAlgorithm


 
  protected void train(AbstractOnlineStatisticalComponent<? extends AbstractState> component, NodeList eTrains, int boot)
  {
    StringModelAD[] models = component.getModels();
    int modelSize = models.length;
    AbstractAlgorithm algorithm;
    StringModelAD model;
    int i, nIterations;
    Element eTrain;
   
    for (i=0; i<modelSize; i++)
View Full Code Here


  protected double develop(String[] developFiles, JointReader reader, AbstractOnlineStatisticalComponent<? extends AbstractState> component, NodeList eTrains, double bootstrapScore, int boot, byte flag) throws Exception
  {
    StringModelAD[] models = component.getModels();
    ObjectDoublePair<List<String>> output = null;
    int modelSize = models.length;
    AbstractAlgorithm algorithm;
    StringModelAD model;
    Element eTrain;
    int i;
   
    for (i=0; i<modelSize; i++)
View Full Code Here

TOP

Related Classes of com.clearnlp.classification.algorithm.AbstractAlgorithm

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.