edu.udo.cs.yale.operator.learner
Class SimplePredictionModel
java.lang.Object
edu.udo.cs.yale.operator.AbstractIOObject
edu.udo.cs.yale.operator.ResultObjectAdapter
edu.udo.cs.yale.operator.AbstractModel
edu.udo.cs.yale.operator.IOModel
edu.udo.cs.yale.operator.learner.PredictionModel
edu.udo.cs.yale.operator.learner.SimplePredictionModel
- All Implemented Interfaces:
- IOObject, Model, ResultObject, Saveable
- Direct Known Subclasses:
- ConjunctiveRuleModel, DistributionModel, MultiCriterionDecisionStumps.DecisionStumpModel
public abstract class SimplePredictionModel
- extends PredictionModel
A model that can be applied to an example set by applying it to each example
separately.
- Version:
- $Id: SimplePredictionModel.java,v 2.2 2006/03/21 15:35:47
ingomierswa Exp $
- Author:
- Ingo Mierswa, Simon Fischer
Method Summary |
void |
performPrediction(ExampleSet exampleSet,
Attribute predictedLabel)
Iterates over all examples and applies the model to them. |
abstract double |
predict(Example example)
Applies the model to a single example and returns the predicted class
value. |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
SimplePredictionModel
protected SimplePredictionModel()
SimplePredictionModel
protected SimplePredictionModel(Attribute label)
predict
public abstract double predict(Example example)
throws OperatorException
- Applies the model to a single example and returns the predicted class
value.
- Throws:
OperatorException
performPrediction
public void performPrediction(ExampleSet exampleSet,
Attribute predictedLabel)
throws OperatorException
- Iterates over all examples and applies the model to them.
- Specified by:
performPrediction
in class PredictionModel
- Throws:
OperatorException
Copyright © 2001-2006