Package pattern.model

Examples of pattern.model.MiningModel


  public Classifier(String pmmlUri) throws PatternException {
    try {
      PMML pmml = new PMML(getSourceReader(pmmlUri));

      if (PMML.Models.MINING.equals(pmml.model_type))
        model = new MiningModel(pmml);
      else if (PMML.Models.TREE.equals(pmml.model_type))
        model = new TreeModel(pmml);
      else if (PMML.Models.REGRESSION.equals(pmml.model_type))
        model = new RegressionModel(pmml);
      else if (PMML.Models.CLUSTERING.equals(pmml.model_type))
View Full Code Here

TOP

Related Classes of pattern.model.MiningModel

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.