org.dmg.pmml.regression.PMMLAttributes Maven / Gradle / Ivy
package org.dmg.pmml.regression;
import java.lang.reflect.Field;
public interface PMMLAttributes {
Field CATEGORICALPREDICTOR_FIELD = org.jpmml.model.ReflectionUtil.getField(CategoricalPredictor.class, "field");
Field CATEGORICALPREDICTOR_VALUE = org.jpmml.model.ReflectionUtil.getField(CategoricalPredictor.class, "value");
Field CATEGORICALPREDICTOR_COEFFICIENT = org.jpmml.model.ReflectionUtil.getField(CategoricalPredictor.class, "coefficient");
Field NUMERICPREDICTOR_FIELD = org.jpmml.model.ReflectionUtil.getField(NumericPredictor.class, "field");
Field NUMERICPREDICTOR_EXPONENT = org.jpmml.model.ReflectionUtil.getField(NumericPredictor.class, "exponent");
Field NUMERICPREDICTOR_COEFFICIENT = org.jpmml.model.ReflectionUtil.getField(NumericPredictor.class, "coefficient");
Field PREDICTORTERM_NAME = org.jpmml.model.ReflectionUtil.getField(PredictorTerm.class, "name");
Field PREDICTORTERM_COEFFICIENT = org.jpmml.model.ReflectionUtil.getField(PredictorTerm.class, "coefficient");
Field REGRESSION_MODELNAME = org.jpmml.model.ReflectionUtil.getField(Regression.class, "modelName");
Field REGRESSION_MININGFUNCTION = org.jpmml.model.ReflectionUtil.getField(Regression.class, "miningFunction");
Field REGRESSION_ALGORITHMNAME = org.jpmml.model.ReflectionUtil.getField(Regression.class, "algorithmName");
Field REGRESSION_NORMALIZATIONMETHOD = org.jpmml.model.ReflectionUtil.getField(Regression.class, "normalizationMethod");
Field REGRESSIONMODEL_MODELNAME = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "modelName");
Field REGRESSIONMODEL_MININGFUNCTION = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "miningFunction");
Field REGRESSIONMODEL_ALGORITHMNAME = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "algorithmName");
Field REGRESSIONMODEL_MODELTYPE = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "modelType");
Field REGRESSIONMODEL_TARGETFIELD = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "targetField");
Field REGRESSIONMODEL_NORMALIZATIONMETHOD = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "normalizationMethod");
Field REGRESSIONMODEL_SCORABLE = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "scorable");
Field REGRESSIONMODEL_MATHCONTEXT = org.jpmml.model.ReflectionUtil.getField(RegressionModel.class, "mathContext");
Field REGRESSIONTABLE_INTERCEPT = org.jpmml.model.ReflectionUtil.getField(RegressionTable.class, "intercept");
Field REGRESSIONTABLE_TARGETCATEGORY = org.jpmml.model.ReflectionUtil.getField(RegressionTable.class, "targetCategory");
}