edu.udo.cs.yale.operator.learner.lazy
Class AverageModel

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.learner.lazy.AverageModel
All Implemented Interfaces:
IOObject, Model, ResultObject, Saveable

public class AverageModel
extends PredictionModel

Average model simply calculates the average of the attributes as prediction. For classification problems the class value closest to the prediction is returned.

Version:
$Id: AverageModel.java,v 1.12 2006/09/30 00:05:31 ingomierswa Exp $
Author:
Ingo Mierswa

Constructor Summary
AverageModel()
           
AverageModel(Attribute label)
           
 
Method Summary
 void performPrediction(ExampleSet exampleSet, Attribute predictedLabelAttribute)
          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).
 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, toString, 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
 

Constructor Detail

AverageModel

public AverageModel()

AverageModel

public AverageModel(Attribute label)
Method Detail

writePredictionModelData

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

Specified by:
writePredictionModelData in class PredictionModel


readPredictionModelData

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

Specified by:
readPredictionModelData in class PredictionModel


performPrediction

public void performPrediction(ExampleSet exampleSet,
                              Attribute predictedLabelAttribute)
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



Copyright © 2001-2006