All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dmg.pmml.regression.PMMLElements Maven / Gradle / Ivy

There is a newer version: 1.6.6
Show newest version

package org.dmg.pmml.regression;

import java.lang.reflect.Field;

public interface PMMLElements {

    Field CATEGORICALPREDICTOR_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(CategoricalPredictor.class, "extensions");
    Field NUMERICPREDICTOR_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(NumericPredictor.class, "extensions");
    Field PREDICTORTERM_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(PredictorTerm.class, "extensions");
    Field PREDICTORTERM_FIELDREFS = org.jpmml.model.ReflectionUtil.getField(PredictorTerm.class, "fieldRefs");
    Field REGRESSION_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(Regression.class, "extensions");
    Field REGRESSION_OUTPUT = org.jpmml.model.ReflectionUtil.getField(Regression.class, "output");
    Field REGRESSION_MODELSTATS = org.jpmml.model.ReflectionUtil.getField(Regression.class, "modelStats");
    Field REGRESSION_TARGETS = org.jpmml.model.ReflectionUtil.getField(Regression.class, "targets");
    Field REGRESSION_LOCALTRANSFORMATIONS = org.jpmml.model.ReflectionUtil.getField(Regression.class, "localTransformations");
    Field REGRESSION_RESULTFIELDS = org.jpmml.model.ReflectionUtil.getField(Regression.class, "resultFields");
    Field REGRESSION_REGRESSIONTABLES = org.jpmml.model.ReflectionUtil.getField(Regression.class, "regressionTables");
    Field REGRESSIONMODEL_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "extensions");
    Field REGRESSIONMODEL_MININGSCHEMA = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "miningSchema");
    Field REGRESSIONMODEL_OUTPUT = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "output");
    Field REGRESSIONMODEL_MODELSTATS = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "modelStats");
    Field REGRESSIONMODEL_MODELEXPLANATION = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "modelExplanation");
    Field REGRESSIONMODEL_TARGETS = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "targets");
    Field REGRESSIONMODEL_LOCALTRANSFORMATIONS = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "localTransformations");
    Field REGRESSIONMODEL_REGRESSIONTABLES = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "regressionTables");
    Field REGRESSIONMODEL_MODELVERIFICATION = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "modelVerification");
    Field REGRESSIONTABLE_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(RegressionTable.class, "extensions");
    Field REGRESSIONTABLE_NUMERICPREDICTORS = org.jpmml.model.ReflectionUtil.getField(RegressionTable.class, "numericPredictors");
    Field REGRESSIONTABLE_CATEGORICALPREDICTORS = org.jpmml.model.ReflectionUtil.getField(RegressionTable.class, "categoricalPredictors");
    Field REGRESSIONTABLE_PREDICTORTERMS = org.jpmml.model.ReflectionUtil.getField(RegressionTable.class, "predictorTerms");

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy