NodeList allTheVectorsL =
vectors.getElementsByTagName("SupportVector");
for (int i = 0; i < allTheVectorsL.getLength(); i++) {
Node vec = allTheVectorsL.item(i);
String vecId = ((Element)vec).getAttribute("vectorId");
VectorInstance suppV = dictionary.getVector(vecId);
if (suppV == null) {
throw new Exception("[SupportVectorMachine] : can't find " +
"vector with ID: " + vecId + " in the " +
"vector dictionary!");
}