.getInstance().getMainWindow());
if (dialog.process()) {
SOMPattern som = new SOMPattern();
som.setInputNeurons(dialog.getInputCount().getValue());
som.setOutputNeurons(dialog.getOutputCount().getValue());
return som.generate();
} else
return null;
}
private static MLMethod createFeedForward() {