double[] scores = new double[numClasses];
//getClassificationScores (instance, scores);
getClassificationScoresWithTemperature (instance, DEFAULT_TEMPERATURE, scores);
// Create and return a Classification object
return new Classification (instance, this,
new LabelVector (getLabelAlphabet(),
scores));
}