Package com.cloutree.modelevaluator.impl.pmml

Examples of com.cloutree.modelevaluator.impl.pmml.PmmlPredictiveModel


  static Logger log = Logger.getLogger(PredictiveModelFactory.class.getName());
 
    protected static PredictiveModel getPredictiveModel(ModelTypes implementation) throws Exception {
 
    if(implementation.equals(ModelTypes.PMML)) {
      PredictiveModel pmmlModel = new PmmlPredictiveModel();
        return pmmlModel;
    }
   
    // TODO Activate as soon as native R is stable
//    else if(implementation.equals(ModelTypes.NativeR)) {
View Full Code Here

TOP

Related Classes of com.cloutree.modelevaluator.impl.pmml.PmmlPredictiveModel

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.