edu.udo.cs.yale.operator.learner.meta
Class BaggingModel
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.meta.BaggingModel
- All Implemented Interfaces:
- IOObject, Model, ResultObject, Saveable
public class BaggingModel
- extends PredictionModel
The model for the internal Bagging implementation.
- Version:
- $Id: BaggingModel.java,v 1.6 2006/09/30 00:05:30 ingomierswa Exp $
- Author:
- Martin Scholz
Field Summary |
static java.lang.String |
ID
|
private java.util.List<Model> |
models
|
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
models
private java.util.List<Model> models
BaggingModel
public BaggingModel()
BaggingModel
public BaggingModel(Attribute label)
- Needed for creation of IOModel (when loading from file).
- Parameters:
label
- the class label
BaggingModel
public BaggingModel(Attribute label,
java.util.List<Model> models)
getIdentifier
public java.lang.String getIdentifier()
- Returns:
- the static class identifier of this model
readPredictionModelData
public void readPredictionModelData(java.io.ObjectInputStream in)
throws java.io.IOException
- Reads all models from file.
- Specified by:
readPredictionModelData
in class PredictionModel
- Throws:
java.io.IOException
writePredictionModelData
public void writePredictionModelData(java.io.ObjectOutputStream out)
throws java.io.IOException
- Writes the models subsequently to the output stream.
- 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 boosting model.
getNumberOfModels
public int getNumberOfModels()
- Returns:
- the number of embedded models
getModel
public Model getModel(int index)
- Getter method for embedded models
- Parameters:
index
- the number of a model part of this boost model
- Returns:
- binary or nominal decision model
performPrediction
public void performPrediction(ExampleSet origExampleSet,
Attribute predictedLabel)
throws OperatorException
- Iterates over all models and averages confidences.
- Specified by:
performPrediction
in class PredictionModel
- Parameters:
origExampleSet
- the set of examples to be classified
- Throws:
OperatorException
updateEstimates
private void updateEstimates(ExampleSet exampleSet,
int modelNr,
Attribute[] specialAttributes)
evaluateSpecialAttributes
private void evaluateSpecialAttributes(ExampleSet exampleSet,
Attribute[] specialAttributes)
createPredictedLabel
protected Attribute createPredictedLabel(ExampleSet exampleSet)
- Creates a predicted label with the given name. If name is null, the name
"prediction(labelname)" is used.
- Overrides:
createPredictedLabel
in class PredictionModel
Copyright © 2001-2006