All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.dmg.pmml.general_regression.PMMLElements Maven / Gradle / Ivy
package org.dmg.pmml.general_regression;
import java.lang.reflect.Field;
public interface PMMLElements {
Field BASECUMHAZARDTABLES_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(BaseCumHazardTables.class, "extensions");
Field BASECUMHAZARDTABLES_BASELINESTRATA = org.jpmml.model.ReflectionUtil.getField(BaseCumHazardTables.class, "baselineStrata");
Field BASECUMHAZARDTABLES_BASELINECELLS = org.jpmml.model.ReflectionUtil.getField(BaseCumHazardTables.class, "baselineCells");
Field BASELINECELL_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(BaselineCell.class, "extensions");
Field BASELINESTRATUM_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(BaselineStratum.class, "extensions");
Field BASELINESTRATUM_BASELINECELLS = org.jpmml.model.ReflectionUtil.getField(BaselineStratum.class, "baselineCells");
Field CATEGORIES_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(Categories.class, "extensions");
Field CATEGORIES_CATEGORIES = org.jpmml.model.ReflectionUtil.getField(Categories.class, "categories");
Field CATEGORY_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(Category.class, "extensions");
Field COVARIATELIST_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(CovariateList.class, "extensions");
Field COVARIATELIST_PREDICTORS = org.jpmml.model.ReflectionUtil.getField(CovariateList.class, "predictors");
Field EVENTVALUES_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(EventValues.class, "extensions");
Field EVENTVALUES_VALUES = org.jpmml.model.ReflectionUtil.getField(EventValues.class, "values");
Field EVENTVALUES_INTERVALS = org.jpmml.model.ReflectionUtil.getField(EventValues.class, "intervals");
Field FACTORLIST_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(FactorList.class, "extensions");
Field FACTORLIST_PREDICTORS = org.jpmml.model.ReflectionUtil.getField(FactorList.class, "predictors");
Field GENERALREGRESSIONMODEL_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "extensions");
Field GENERALREGRESSIONMODEL_MININGSCHEMA = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "miningSchema");
Field GENERALREGRESSIONMODEL_OUTPUT = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "output");
Field GENERALREGRESSIONMODEL_MODELSTATS = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "modelStats");
Field GENERALREGRESSIONMODEL_MODELEXPLANATION = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "modelExplanation");
Field GENERALREGRESSIONMODEL_TARGETS = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "targets");
Field GENERALREGRESSIONMODEL_LOCALTRANSFORMATIONS = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "localTransformations");
Field GENERALREGRESSIONMODEL_PARAMETERLIST = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "parameterList");
Field GENERALREGRESSIONMODEL_FACTORLIST = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "factorList");
Field GENERALREGRESSIONMODEL_COVARIATELIST = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "covariateList");
Field GENERALREGRESSIONMODEL_PPMATRIX = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "ppMatrix");
Field GENERALREGRESSIONMODEL_PCOVMATRIX = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "pCovMatrix");
Field GENERALREGRESSIONMODEL_PARAMMATRIX = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "paramMatrix");
Field GENERALREGRESSIONMODEL_EVENTVALUES = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "eventValues");
Field GENERALREGRESSIONMODEL_BASECUMHAZARDTABLES = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "baseCumHazardTables");
Field GENERALREGRESSIONMODEL_MODELVERIFICATION = org.jpmml.model.ReflectionUtil.getField(GeneralRegressionModel.class, "modelVerification");
Field PARAMETER_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(Parameter.class, "extensions");
Field PARAMETERLIST_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(ParameterList.class, "extensions");
Field PARAMETERLIST_PARAMETERS = org.jpmml.model.ReflectionUtil.getField(ParameterList.class, "parameters");
Field PARAMMATRIX_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(ParamMatrix.class, "extensions");
Field PARAMMATRIX_PCELLS = org.jpmml.model.ReflectionUtil.getField(ParamMatrix.class, "pCells");
Field PCELL_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(PCell.class, "extensions");
Field PCOVCELL_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(PCovCell.class, "extensions");
Field PCOVMATRIX_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(PCovMatrix.class, "extensions");
Field PCOVMATRIX_PCOVCELLS = org.jpmml.model.ReflectionUtil.getField(PCovMatrix.class, "pCovCells");
Field PPCELL_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(PPCell.class, "extensions");
Field PPMATRIX_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(PPMatrix.class, "extensions");
Field PPMATRIX_PPCELLS = org.jpmml.model.ReflectionUtil.getField(PPMatrix.class, "ppCells");
Field PREDICTOR_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(Predictor.class, "extensions");
Field PREDICTOR_CATEGORIES = org.jpmml.model.ReflectionUtil.getField(Predictor.class, "categories");
Field PREDICTOR_MATRIX = org.jpmml.model.ReflectionUtil.getField(Predictor.class, "matrix");
}