TrainBasicNetwork t = new TrainBasicNetwork((ProjectEGFile)this.getEncogObject(),this);
t.performTrain();
}
private void randomizeBasicNetwork() {
RandomizeNetworkDialog dialog = new RandomizeNetworkDialog(
EncogWorkBench.getInstance().getMainWindow());
dialog.getHigh().setValue(1);
dialog.getConstHigh().setValue(1);
dialog.getLow().setValue(-1);
dialog.getConstLow().setValue(-1);
dialog.getSeedValue().setValue(1000);
dialog.getConstantValue().setValue(0);
dialog.getPerturbPercent().setValue(0.01);
if (dialog.process()) {
switch (dialog.getCurrentTab()) {
case 0:
optionRandomize(dialog);
break;
case 1: