Package weka.classifiers.pmml.consumer

Examples of weka.classifiers.pmml.consumer.SupportVectorMachineModel$LinearKernel


      break;
    case RULESET_MODEL:
      pmmlM = new RuleSetModel(model, dataDictionary, miningSchema);
      break;
    case SVM_MODEL:
      pmmlM = new SupportVectorMachineModel(model, dataDictionary, miningSchema);
      break;
    default:
      throw new Exception("[PMMLFactory] Unknown model type!!");
    }
    pmmlM.setPMMLVersion(doc);
View Full Code Here

TOP

Related Classes of weka.classifiers.pmml.consumer.SupportVectorMachineModel$LinearKernel

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.