edu.udo.cs.yale.operator.learner.meta
Class MultiModel
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.MultiModel
- All Implemented Interfaces:
- IOObject, Model, ResultObject, Saveable
public class MultiModel
- extends PredictionModel
MultiModels are used for multi class learning tasks. A MultiModel contains a
set of Models that can handle only two-class decisions.
- Version:
- $Id: MultiModel.java,v 1.14 2006/09/30 00:05:30 ingomierswa Exp $
- Author:
- Ingo Mierswa, Simon Fischer
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 Model[] models
MultiModel
public MultiModel()
MultiModel
public MultiModel(Attribute label)
MultiModel
public MultiModel(Attribute label,
Model[] models)
getNumberOfModels
public int getNumberOfModels()
getModel
public Model getModel(int index)
- Returns a binary decision model for the given classification index.
performPrediction
public void performPrediction(ExampleSet exampleSet,
Attribute predictedLabel)
throws OperatorException
- Iterates over all classes of the label and applies one model for each
class. For each example the predicted label is determined by choosing the
model with the highest confidence.
- Specified by:
performPrediction
in class PredictionModel
- Throws:
OperatorException
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
readPredictionModelData
public void readPredictionModelData(java.io.ObjectInputStream in)
throws java.io.IOException
- Reads all models from the file.
- Specified by:
readPredictionModelData
in class PredictionModel
- Throws:
java.io.IOException
getIdentifier
public java.lang.String getIdentifier()
toString
public java.lang.String toString()
- Overrides:
toString
in class PredictionModel
Copyright © 2001-2006