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

org.dmg.pmml.naive_bayes.PMMLAttributes Maven / Gradle / Ivy

There is a newer version: 1.6.6
Show newest version

package org.dmg.pmml.naive_bayes;

import java.lang.reflect.Field;

public interface PMMLAttributes {

    Field BAYESINPUT_FIELD = org.jpmml.model.ReflectionUtil.getField(BayesInput.class, "field");
    Field BAYESOUTPUT_TARGETFIELD = org.jpmml.model.ReflectionUtil.getField(BayesOutput.class, "targetField");
    Field NAIVEBAYESMODEL_MODELNAME = org.jpmml.model.ReflectionUtil.getField(NaiveBayesModel.class, "modelName");
    Field NAIVEBAYESMODEL_THRESHOLD = org.jpmml.model.ReflectionUtil.getField(NaiveBayesModel.class, "threshold");
    Field NAIVEBAYESMODEL_MININGFUNCTION = org.jpmml.model.ReflectionUtil.getField(NaiveBayesModel.class, "miningFunction");
    Field NAIVEBAYESMODEL_ALGORITHMNAME = org.jpmml.model.ReflectionUtil.getField(NaiveBayesModel.class, "algorithmName");
    Field NAIVEBAYESMODEL_SCORABLE = org.jpmml.model.ReflectionUtil.getField(NaiveBayesModel.class, "scorable");
    Field NAIVEBAYESMODEL_MATHCONTEXT = org.jpmml.model.ReflectionUtil.getField(NaiveBayesModel.class, "mathContext");
    Field PAIRCOUNTS_VALUE = org.jpmml.model.ReflectionUtil.getField(PairCounts.class, "value");
    Field TARGETVALUECOUNT_VALUE = org.jpmml.model.ReflectionUtil.getField(TargetValueCount.class, "value");
    Field TARGETVALUECOUNT_COUNT = org.jpmml.model.ReflectionUtil.getField(TargetValueCount.class, "count");
    Field TARGETVALUESTAT_VALUE = org.jpmml.model.ReflectionUtil.getField(TargetValueStat.class, "value");

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy