edu.udo.cs.yale.operator.postprocessing
Class PlattScalingModel
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.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
Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ID
public static final java.lang.String ID
- See Also:
- Constant Field Values
parameters
private PlattParameters parameters
model
private Model model
PlattScalingModel
public PlattScalingModel()
PlattScalingModel
public PlattScalingModel(Attribute label)
PlattScalingModel
public PlattScalingModel(Attribute label,
Model model,
PlattParameters parameters)
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