Package pattern.model.glm

Examples of pattern.model.glm.GeneralizedRegressionModel


      else if (PMML.Models.REGRESSION.equals(pmml.model_type))
        model = new RegressionModel(pmml);
      else if (PMML.Models.CLUSTERING.equals(pmml.model_type))
        model = new ClusteringModel(pmml);
      else if (PMML.Models.GENERALIZED_REGRESSION.equals(pmml.model_type))
        model = new GeneralizedRegressionModel(pmml);
      else
        throw new PatternException("unsupported model type: "
            + pmml.model_type.name());
    } catch (IOException exception) {
      LOG.error("could not read PMML file", exception);
View Full Code Here

TOP

Related Classes of pattern.model.glm.GeneralizedRegressionModel

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.