Loss loss = new HammingLoss();
LabelAlphabet la = cl.getAlphabetFactory().DefaultLabelAlphabet();
Predict xx = cl.classify(inst,5);
double[] scores=new double[5];
String[] sentenceout=new String[5];
int[] pred;
String[][] labelsSet = new String[xx.size()][];
ArrayList<String> res = null;
for(int j=0;j<xx.size();j++){
pred = (int[]) xx.getLabel(j);
float uuu = xx.getScore(j);
labelsSet [j] = la.lookupString(pred);
res = FormatCWS.toList(inst, labelsSet [j]);
// System.out.println(res);
}