}
public void testFactorySVM() {
String architecture = "?->C(KERNEL=RBF,TYPE=NEW)->?";
MLMethodFactory factory = new MLMethodFactory();
SVM network = (SVM)factory.create(MLMethodFactory.TYPE_SVM, architecture, 4, 1);
Assert.assertEquals(4,network.getInputCount());
Assert.assertEquals(1,network.getOutputCount());
}