Package org.encog.mathutil.libsvm

Examples of org.encog.mathutil.libsvm.svm_parameter


  /**
   * Construct the SVM.
   */
  public SVM() {
    this.params = new svm_parameter();
  }
View Full Code Here


   */
  public SVM(final int theInputCount, final SVMType svmType,
      final KernelType kernelType) {
    this.inputCount = theInputCount;

    this.params = new svm_parameter();

    switch (svmType) {
    case SupportVectorClassification:
      this.params.svm_type = svm_parameter.C_SVC;
      break;
View Full Code Here

  /**
   * Construct the SVM.
   */
  public SVM() {
    this.params = new svm_parameter();
  }
View Full Code Here

   */
  public SVM(final int theInputCount, final SVMType svmType,
      final KernelType kernelType) {
    this.inputCount = theInputCount;

    this.params = new svm_parameter();

    switch (svmType) {
    case SupportVectorClassification:
      this.params.svm_type = svm_parameter.C_SVC;
      break;
View Full Code Here

TOP

Related Classes of org.encog.mathutil.libsvm.svm_parameter

Copyright © 2018 www.massapicom. 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.