Package com.clearnlp.classification.train

Examples of com.clearnlp.classification.train.StringInstance


    String label = null;
   
    if (isTrain())
    {
      label = AbstractModel.getBooleanLabel(state.getGoldLabel() != null);
      insts.add(new StringInstance(label, vector));
    }
    else if (isDevelopOrDecode())
    {
      label = getAutoLabel(vector);
    }
View Full Code Here


    String label = null;
   
    if (isTrain())
    {
      label = state.getGoldLabel();
      s_spaces[modelId].addInstance(new StringInstance(label, vector));
    }
    else if (isDevelopOrDecode())
    {
      label = getAutoLabel(vector, modelId);
    }
View Full Code Here

    StringPrediction p = null;
   
    if (isTrain())
    {
      p = new StringPrediction(getGoldLabel(state), 1d);
      s_spaces[idx].addInstance(new StringInstance(p.label, vector));
    }
    else if (isDevelopOrDecode())
    {
      p = getAutoLabel(idx, vector, state);
    }
    else if (isBootstrap())
    {
      p = getAutoLabel(idx, vector, state);
      s_spaces[idx].addInstance(new StringInstance(getGoldLabel(state), vector));
    }

    return p;
  }
View Full Code Here

    String label = null;
   
    if (isTrain())
    {
      label = state.getGoldLabel();
      if (vector.size() > 0) insts.add(new StringInstance(label, vector));
    }
    else if (isDevelopOrDecode())
    {
      label = getAutoLabel(vector, state);
    }
    else if (isBootstrap())
    {
      label = getAutoLabel(vector, state);
      if (vector.size() > 0) insts.add(new StringInstance(state.getGoldLabel(), vector));
    }
   
    return label;
  }
View Full Code Here

        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

    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

Related Classes of com.clearnlp.classification.train.StringInstance

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.