/** Called by {@link #processBootstrap(TagState, List)} and {@link #processDecode(TagState)}. */
private String getAutoLabel(TagState state, StringFeatureVector vector)
{
Pair<StringPrediction,StringPrediction> ps = s_model.predictTop2(vector);
StringPrediction fst = ps.o1;
StringPrediction snd = ps.o2;
if (fst.score - snd.score < 1)
state.getInput().addFeat(DEPLib.FEAT_POS2, snd.label);
return fst.label;