300301302303304305306307308309310
String from = entries[0]; String to = entries[1]; Double cost = Double.parseDouble(entries[2]); MisclassificationCost mcc = new MisclassificationCost(from, to, cost); labels.add(mcc); } return labels; }