|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.Operator
edu.udo.cs.yale.operator.postprocessing.PlattScaling
public class PlattScaling
A scaling operator, applying the original algorithm by Platt (1999) to turn confidence scores of boolean classifiers into probability estimates. Unlike the original version this operator assumes that the confidence scores are already in the interval of [0,1], as e.g. given for the YALE boosting operators. The crude estimates are then transformed into log odds, and scaled by the original transformation of Platt. The operator assumes a model and an example set for scaling. It outputs a PlattScalingModel, that contains both, the supplied model and the scaling step. If the example set contains a weight attribute, then this operator is able to fit a model to the weighted examples.
Constructor Summary | |
---|---|
PlattScaling(OperatorDescription description)
|
Method Summary | |
---|---|
IOObject[] |
apply()
Implement this method in subclasses. |
static PlattParameters |
computeParameters(ExampleSet exampleSet,
Attribute label)
Implementation of Platt' scaling algorithm as found in [Platt, 1999]. |
private Attribute |
extractLabel(Model model,
ExampleSet exampleSet)
|
java.lang.Class[] |
getInputClasses()
Returns an array with two elements: ExampleSet and Model. |
static double |
getLogOddsPosConfidence(double originalConfidence)
Translates confidence scores in [0, 1] to those originally expected by Platt's scaling, where positive values result in positive predictions, and where the absolute value indicates the confidence in the prediction. |
java.lang.Class[] |
getOutputClasses()
Returns an array with one element; Model |
java.util.List<ParameterType> |
getParameterTypes()
Registers parameters. |
boolean |
supportsCapability(LearnerCapability lc)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public PlattScaling(OperatorDescription description)
Method Detail |
---|
public java.util.List<ParameterType> getParameterTypes()
getParameterTypes
in class Operator
public boolean supportsCapability(LearnerCapability lc)
public java.lang.Class[] getInputClasses()
getInputClasses
in class Operator
public java.lang.Class[] getOutputClasses()
getOutputClasses
in class Operator
public IOObject[] apply() throws OperatorException
Operator
apply
in class Operator
OperatorException
private Attribute extractLabel(Model model, ExampleSet exampleSet)
public static PlattParameters computeParameters(ExampleSet exampleSet, Attribute label)
exampleSet
- the example set for finding the model parameters. It needs to
contain a predicted label and confidence scores. Please note,
that the confidence values are expected to range from 0 to 1,
e.g. already take the form of coarse probability estimates.
public static double getLogOddsPosConfidence(double originalConfidence)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |