edu.udo.cs.yale.operator.postprocessing
Class PlattScalingModel

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.postprocessing.PlattScalingModel
All Implemented Interfaces:
IOObject, Model, ResultObject, Saveable

public class PlattScalingModel
extends PredictionModel

A model that contains a boolean classifier and a scaling operation that turns confidence scores into probability estimates. It is the result of a PlattScaling operator.

Version:
$Id: PlattScalingModel.java,v 1.2 2006/04/14 20:53:38 martin_scholz Exp $
Author:
Martin Scholz

Field Summary
static java.lang.String ID
           
private  Model model
           
private  PlattParameters parameters
           
 
Constructor Summary
PlattScalingModel()
           
PlattScalingModel(Attribute label)
           
PlattScalingModel(Attribute label, Model model, PlattParameters parameters)
           
 
Method Summary
 java.lang.String getIdentifier()
           
 void performPrediction(ExampleSet exampleSet, Attribute predictedLabel)
          Subclasses should iterated through the given example set and set the prediction for each example.
 void readPredictionModelData(java.io.ObjectInputStream in)
          Reads the model data (without label).
 java.lang.String toString()
           
 void writePredictionModelData(java.io.ObjectOutputStream out)
          Writes the model data (without label).
 
Methods inherited from class edu.udo.cs.yale.operator.learner.PredictionModel
apply, createPredictedLabel, getLabel, readData, removePredictedLabel, setLabel, writeData
 
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
 

Field Detail

ID

public static final java.lang.String ID
See Also:
Constant Field Values

parameters

private PlattParameters parameters

model

private Model model
Constructor Detail

PlattScalingModel

public PlattScalingModel()

PlattScalingModel

public PlattScalingModel(Attribute label)

PlattScalingModel

public PlattScalingModel(Attribute label,
                         Model model,
                         PlattParameters parameters)
Method Detail

getIdentifier

public java.lang.String getIdentifier()
Returns:
the static class identifier of this model

performPrediction

public void performPrediction(ExampleSet exampleSet,
                              Attribute predictedLabel)
                       throws OperatorException
Description copied from class: PredictionModel
Subclasses should iterated through the given example set and set the prediction for each example. The given predicted label attribute was already be added to the example set and should be used to set the predicted values.

Specified by:
performPrediction in class PredictionModel
Throws:
OperatorException


readPredictionModelData

public void readPredictionModelData(java.io.ObjectInputStream in)
                             throws java.io.IOException
Description copied from class: PredictionModel
Reads the model data (without label).

Specified by:
readPredictionModelData in class PredictionModel
Throws:
java.io.IOException


writePredictionModelData

public void writePredictionModelData(java.io.ObjectOutputStream out)
                              throws java.io.IOException
Description copied from class: PredictionModel
Writes the model data (without label).

Specified by:
writePredictionModelData in class PredictionModel
Throws:
java.io.IOException


toString

public java.lang.String toString()
Overrides:
toString in class PredictionModel
Returns:
a String representation of this scaling model.


Copyright © 2001-2006