return null;
}
private static MLMethod createRBF() {
CreateRBFDialog dialog = new CreateRBFDialog(EncogWorkBench
.getInstance().getMainWindow());
if (dialog.process()) {
RBFEnum type = dialog.getRBFType();
RadialBasisPattern rbf = new RadialBasisPattern();
rbf.setInputNeurons(dialog.getInputCount().getValue());
rbf.addHiddenLayer(dialog.getHiddenCount().getValue());
rbf.setOutputNeurons(dialog.getOutputCount().getValue());
rbf.setRBF(type);
return rbf.generate();
} else
return null;