Package org.encog.workbench.dialogs.training.methods

Examples of org.encog.workbench.dialogs.training.methods.InputSearchSVM.process()


    dialog.getStepGamma().setValue(SVMTrain.DEFAULT_GAMMA_STEP);
    dialog.getBeginningC().setValue(SVMTrain.DEFAULT_CONST_BEGIN);
    dialog.getEndingC().setValue(SVMTrain.DEFAULT_CONST_END);
    dialog.getStepC().setValue(SVMTrain.DEFAULT_CONST_STEP);

    if (dialog.process()) {
      double maxError = dialog.getMaxError().getValue() / 100.0;
      SVMSearchJob train = new SVMSearchJob(method, trainingData, null);
      train.setGammaBegin(dialog.getBeginningGamma().getValue());
      train.setGammaEnd(dialog.getEndingGamma().getValue());
      train.setGammaStep(dialog.getStepGamma().getValue());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.