edu.udo.cs.yale.operator.learner
Class SimpleBinaryPredictionModel

java.lang.Object
  extended by edu.udo.cs.yale.operator.AbstractIOObject
      extended by edu.udo.cs.yale.operator.ResultObjectAdapter
          extended by edu.udo.cs.yale.operator.AbstractModel
              extended by edu.udo.cs.yale.operator.IOModel
                  extended by edu.udo.cs.yale.operator.learner.PredictionModel
                      extended by edu.udo.cs.yale.operator.learner.SimpleBinaryPredictionModel
All Implemented Interfaces:
IOObject, Model, ResultObject, Saveable

public abstract class SimpleBinaryPredictionModel
extends PredictionModel

A model that can be applied to an example set by applying it to each example separately. In contrast to the usual SimplePredictionModel, this model should only be used for binary classification problems. The method predict(Example) must deliver a function value. A value greater than 0 will be mapped to the positive class, a value smaller than 0 to the negative class index. The confidence values will be calculated by the fast and simple scaling suggested by Rueping.

Version:
$Id: SimpleBinaryPredictionModel.java,v 1.1 2006/10/02 23:33:08 ingomierswa Exp $
Author:
Ingo Mierswa

Constructor Summary
protected SimpleBinaryPredictionModel()
           
protected SimpleBinaryPredictionModel(Attribute label)
           
 
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 edu.udo.cs.yale.operator.learner.PredictionModel
apply, createPredictedLabel, getLabel, readData, readPredictionModelData, removePredictedLabel, setLabel, toString, writeData, writePredictionModelData
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractModel
equals, getExtension, getFileDescription, readModel, readModel, save, setParameter, writeModel, writeModel
 
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter
addAction, getActions, getName, getVisualisationComponent, toHTML, toResultString
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject
copy, read, read, read, write, write
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface edu.udo.cs.yale.operator.ResultObject
getActions, getName, getVisualisationComponent, toResultString
 
Methods inherited from interface edu.udo.cs.yale.operator.IOObject
copy, write, write
 

Constructor Detail

SimpleBinaryPredictionModel

protected SimpleBinaryPredictionModel()

SimpleBinaryPredictionModel

protected SimpleBinaryPredictionModel(Attribute label)
Method Detail

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