m_targetCategoryIndex = index;
// now check for the PMML 4.0 alternateTargetCategory
String altTargetCat = machineElement.getAttribute("alternateTargetCategory");
if (altTargetCat != null && altTargetCat.length() > 0) {
index = classAtt.indexOfValue(altTargetCat);
if (index < 0) {
throw new Exception("[SupportVectorMachine] : can't find alternate target category: "
+ altTargetCat + " in the class attribute!");
}
m_localAlternateTargetCategoryIndex = index;