Examples of SVMTrain


Examples of org.encog.ml.svm.training.SVMTrain

 
  private SVM create()
  {
    MLDataSet training = new BasicMLDataSet(XOR.XOR_INPUT,XOR.XOR_IDEAL);
    SVM result = new SVM(2,SVMType.EpsilonSupportVectorRegression,KernelType.RadialBasisFunction);
    final SVMTrain train = new SVMTrain(result, training);
    train.iteration();
    return result;
  }
View Full Code Here

Examples of org.encog.ml.svm.training.SVMTrain

    return network;
  }
 
  public void train(SVM network,MLDataSet training)
  {
    final SVMTrain train = new SVMTrain(network, training);
    train.iteration();
  }
View Full Code Here

Examples of org.encog.ml.svm.training.SVMTrain

      final MLDataSet dataSet, final double error) {

    MLTrain train;

    if (method instanceof SVM) {
      train = new SVMTrain((SVM)method, dataSet);
    } else {
      train = new ResilientPropagation((ContainsFlat)method, dataSet);
    }
    EncogUtility.trainToError(train, error);
  }
View Full Code Here

Examples of org.encog.ml.svm.training.SVMTrain

    if (dialog.process()) {
      double c = dialog.getC().getValue();
      double g = dialog.getGamma().getValue();
      SVM method = (SVM) file.getObject();
      SVMTrain train = new SVMTrain((SVM) method, trainingData);
      train.setC(c);
      train.setGamma(g);
      train.iteration();
      double error = method.calculateError(trainingData);
      if (EncogWorkBench.askQuestion("Training Done",
          "Error: " + Format.formatPercent(error)
              + "\nSave training?")) {
        file.save();
View Full Code Here

Examples of org.encog.ml.svm.training.SVMTrain

    final double gamma = holder.getDouble(MLTrainFactory.PROPERTY_GAMMA,
        false, defaultGamma);
    final double c = holder.getDouble(MLTrainFactory.PROPERTY_C, false,
        defaultC);

    final SVMTrain result = new SVMTrain((SVM) method, training);
    result.setGamma(gamma);
    result.setC(c);
    return result;
  }
View Full Code Here

Examples of org.encog.ml.svm.training.SVMTrain

    return network;
  }
 
  public void train(SVM network,MLDataSet training)
  {
    final SVMTrain train = new SVMTrain(network, training);
    train.iteration();
  }
View Full Code Here

Examples of org.encog.ml.svm.training.SVMTrain

    final double gamma = holder.getDouble(MLTrainFactory.PROPERTY_GAMMA,
        false, defaultGamma);
    final double c = holder.getDouble(MLTrainFactory.PROPERTY_C, false,
        defaultC);

    final SVMTrain result = new SVMTrain((SVM) method, training);
    result.setGamma(gamma);
    result.setC(c);
    return result;
  }
View Full Code Here

Examples of org.encog.ml.svm.training.SVMTrain

      final MLDataSet dataSet, final double error) {

    MLTrain train;

    if (method instanceof SVM) {
      train = new SVMTrain((SVM)method, dataSet);
    } if(method instanceof FreeformNetwork ) {
      train = new FreeformResilientPropagation((FreeformNetwork) method, dataSet);
    } else {
      train = new ResilientPropagation((ContainsFlat)method, dataSet);
    }
View Full Code Here

Examples of org.encog.ml.svm.training.SVMTrain

 
  private SVM create()
  {
    MLDataSet training = new BasicMLDataSet(XOR.XOR_INPUT,XOR.XOR_IDEAL);
    SVM result = new SVM(2,SVMType.EpsilonSupportVectorRegression,KernelType.RadialBasisFunction);
    final SVMTrain train = new SVMTrain(result, training);
    train.iteration();
    return result;
  }
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.