weka.classifiers.bayes.net.estimate.BayesNetEstimator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-dev Show documentation
Show all versions of weka-dev Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This version represents the developer version, the
"bleeding edge" of development, you could say. New functionality gets added
to this version.
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
/*
* BayesNetEstimator.java
* Copyright (C) 2004-2012 University of Waikato, Hamilton, New Zealand
*
*/
package weka.classifiers.bayes.net.estimate;
import java.io.Serializable;
import java.util.Enumeration;
import java.util.Vector;
import weka.classifiers.bayes.BayesNet;
import weka.core.Instance;
import weka.core.Option;
import weka.core.OptionHandler;
import weka.core.RevisionHandler;
import weka.core.RevisionUtils;
import weka.core.Utils;
/**
* BayesNetEstimator is the base class for estimating
* the conditional probability tables of a Bayes network once the structure has
* been learned.
*
*
*
* Valid options are:
*
*
*
* -A <alpha>
* Initial count (alpha)
*
*
*
*
* @author Remco Bouckaert ([email protected])
* @version $Revision: 10153 $
*/
public class BayesNetEstimator implements OptionHandler, Serializable,
RevisionHandler {
/** for serialization */
static final long serialVersionUID = 2184330197666253884L;
/**
* Holds prior on count
*/
protected double m_fAlpha = 0.5;
/**
* estimateCPTs estimates the conditional probability tables for the Bayes Net
* using the network structure.
*
* @param bayesNet the bayes net to use
* @throws Exception always throws an exception, since subclass needs to be
* used
*/
public void estimateCPTs(BayesNet bayesNet) throws Exception {
throw new Exception("Incorrect BayesNetEstimator: use subclass instead.");
}
/**
* Updates the classifier with the given instance.
*
* @param bayesNet the bayes net to use
* @param instance the new training instance to include in the model
* @throws Exception always throws an exception, since subclass needs to be
* used
*/
public void updateClassifier(BayesNet bayesNet, Instance instance)
throws Exception {
throw new Exception("Incorrect BayesNetEstimator: use subclass instead.");
}
/**
* Calculates the class membership probabilities for the given test instance.
*
* @param bayesNet the bayes net to use
* @param instance the instance to be classified
* @return predicted class probability distribution
* @throws Exception always throws an exception, since subclass needs to be
* used
*/
public double[] distributionForInstance(BayesNet bayesNet, Instance instance)
throws Exception {
throw new Exception("Incorrect BayesNetEstimator: use subclass instead.");
}
/**
* initCPTs reserves space for CPTs and set all counts to zero
*
* @param bayesNet the bayes net to use
* @throws Exception always throws an exception, since subclass needs to be
* used
*/
public void initCPTs(BayesNet bayesNet) throws Exception {
throw new Exception("Incorrect BayesNetEstimator: use subclass instead.");
} // initCPTs
/**
* Returns an enumeration describing the available options
*
* @return an enumeration of all the available options
*/
@Override
public Enumeration
© 2015 - 2024 Weber Informatics LLC | Privacy Policy