edu.udo.cs.yale.operator.learner
Class DistributionModel
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.SimplePredictionModel
edu.udo.cs.yale.operator.learner.DistributionModel
- All Implemented Interfaces:
- IOObject, Model, ResultObject, Saveable
public class DistributionModel
- extends SimplePredictionModel
DistributionModel is a model for learner, which generate estimated
distributions for prediction. For all classes and all attributes at least
one distribution must be added. Predicted will be the class with the highest
probability. The classprobability is the product of the probability of every attribute.
The probability for an attribute is the mean of the probabilities of every distribution.
- Version:
- $Id$
- Author:
- Sebastian Land
Constructor Summary |
DistributionModel(Attribute labelAttribute,
int numberOfClasses,
double[] classProbabilities,
boolean[] useAttribute)
|
Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
useAttribute
private boolean[] useAttribute
classDistributions
private java.util.ArrayList<java.util.ArrayList<java.util.ArrayList<Distribution>>> classDistributions
numberOfClasses
private int numberOfClasses
numberOfAttributes
private int numberOfAttributes
classProbabilities
private double[] classProbabilities
DistributionModel
public DistributionModel(Attribute labelAttribute,
int numberOfClasses,
double[] classProbabilities,
boolean[] useAttribute)
addDistribution
public void addDistribution(int classIndex,
int attributeIndex,
Distribution distribution)
predict
public double predict(Example example)
throws OperatorException
- Description copied from class:
SimplePredictionModel
- Applies the model to a single example and returns the predicted class
value.
- Specified by:
predict
in class SimplePredictionModel
- Throws:
OperatorException
getProbabilityForClass
private double getProbabilityForClass(int classIndex,
Example example)
getProbabilityForAttribute
private double getProbabilityForAttribute(int classIndex,
int attributeIndex,
Example example)
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
toResultString
public java.lang.String toResultString()
- Description copied from class:
ResultObjectAdapter
- The default implementation simply returns the result of the method
Object.toString()
.
- Specified by:
toResultString
in interface ResultObject
- Overrides:
toResultString
in class ResultObjectAdapter
Copyright © 2001-2006