本文整理汇总了Java中org.dmg.pmml.tree.TreeModel.getMiningFunction方法的典型用法代码示例。如果您正苦于以下问题:Java TreeModel.getMiningFunction方法的具体用法?Java TreeModel.getMiningFunction怎么用?Java TreeModel.getMiningFunction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.dmg.pmml.tree.TreeModel
的用法示例。
在下文中一共展示了TreeModel.getMiningFunction方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
import org.dmg.pmml.tree.TreeModel; //导入方法依赖的package包/类
@Override
public VisitorAction visit(Node node){
TreeModel treeModel = getTreeModel();
MiningFunction miningFunction = treeModel.getMiningFunction();
switch(miningFunction){
case REGRESSION:
if(node.hasScoreDistributions()){
List<ScoreDistribution> scoreDistributions = node.getScoreDistributions();
scoreDistributions.clear();
}
break;
default:
break;
}
return super.visit(node);
}
示例2: visit
import org.dmg.pmml.tree.TreeModel; //导入方法依赖的package包/类
@Override
public VisitorAction visit(TreeModel treeModel){
TreeModel.MissingValueStrategy missingValueStrategy = treeModel.getMissingValueStrategy();
TreeModel.NoTrueChildStrategy noTrueChildStrategy = treeModel.getNoTrueChildStrategy();
TreeModel.SplitCharacteristic splitCharacteristic = treeModel.getSplitCharacteristic();
if(!(TreeModel.MissingValueStrategy.NONE).equals(missingValueStrategy) || !(TreeModel.NoTrueChildStrategy.RETURN_NULL_PREDICTION).equals(noTrueChildStrategy) || !(TreeModel.SplitCharacteristic.BINARY_SPLIT).equals(splitCharacteristic)){
throw new IllegalArgumentException();
}
treeModel
.setMissingValueStrategy(TreeModel.MissingValueStrategy.NULL_PREDICTION)
.setSplitCharacteristic(TreeModel.SplitCharacteristic.MULTI_SPLIT);
MiningFunction miningFunction = treeModel.getMiningFunction();
switch(miningFunction){
case REGRESSION:
treeModel.setNoTrueChildStrategy(TreeModel.NoTrueChildStrategy.RETURN_LAST_PREDICTION);
break;
case CLASSIFICATION:
break;
default:
throw new IllegalArgumentException();
}
return super.visit(treeModel);
}
示例3: evaluate
import org.dmg.pmml.tree.TreeModel; //导入方法依赖的package包/类
@Override
public Map<FieldName, ?> evaluate(ModelEvaluationContext context){
TreeModel treeModel = ensureScorableModel();
ValueFactory<?> valueFactory;
MathContext mathContext = treeModel.getMathContext();
switch(mathContext){
case FLOAT:
case DOUBLE:
valueFactory = getValueFactory();
break;
default:
throw new UnsupportedAttributeException(treeModel, mathContext);
}
Map<FieldName, ?> predictions;
MiningFunction miningFunction = treeModel.getMiningFunction();
switch(miningFunction){
case REGRESSION:
predictions = evaluateRegression(valueFactory, context);
break;
case CLASSIFICATION:
predictions = evaluateClassification(valueFactory, context);
break;
case ASSOCIATION_RULES:
case SEQUENCES:
case CLUSTERING:
case TIME_SERIES:
case MIXED:
throw new InvalidAttributeException(treeModel, miningFunction);
default:
throw new UnsupportedAttributeException(treeModel, miningFunction);
}
return OutputUtil.evaluate(predictions, context);
}
示例4: handleTreeModelPush
import org.dmg.pmml.tree.TreeModel; //导入方法依赖的package包/类
private void handleTreeModelPush(TreeModel treeModel){
this.miningFunction = treeModel.getMiningFunction();
this.categoricalFields.clear();
}
示例5: handleTreeModelPush
import org.dmg.pmml.tree.TreeModel; //导入方法依赖的package包/类
private void handleTreeModelPush(TreeModel treeModel){
this.miningFunction = treeModel.getMiningFunction();
}