Examples of StringInstance


Examples of com.clearnlp.classification.train.StringInstance

        r = pModel.predictBest(sp.o2);
        label = sp.o1;
      }
      else
      {
        StringInstance ss = StringTrainSpace.toInstance(line, hasWeight);
        r = sModel.predictBest(ss.getFeatureVector());
        label = ss.getLabel();
      }
     
      fout.println(r.label+" "+r.score);
      if (r.label.equals(label))  correct++;
      total++;
View Full Code Here

Examples of com.clearnlp.classification.train.StringInstance

    DEPLabel label = null;
   
    if (isTrain())
    {
      label = state.getGoldLabel();
      insts.add(new StringInstance(label.toString(), vector));
    }
    else if (isDevelopOrDecode())
    {
      label = getAutoLabel(vector, state);
    }
    else if (isBootstrap())
    {
      label = getAutoLabel(vector, state);
      insts.add(new StringInstance(state.getGoldLabel().toString(), vector));
    }
   
    return label;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.