Package weka.classifiers.functions.pace
Class ChisqMixture
java.lang.Object
weka.classifiers.functions.pace.MixtureDistribution
weka.classifiers.functions.pace.ChisqMixture
- All Implemented Interfaces:
RevisionHandler
,TechnicalInformationHandler
Class for manipulating chi-square mixture distributions.
For more information see:
Wang, Y (2000). A new approach to fitting linear models in high dimensional spaces. Hamilton, New Zealand.
Wang, Y., Witten, I. H.: Modeling for optimal probability prediction. In: Proceedings of the Nineteenth International Conference in Machine Learning, Sydney, Australia, 650-657, 2002. BibTeX:
Wang, Y., Witten, I. H.: Modeling for optimal probability prediction. In: Proceedings of the Nineteenth International Conference in Machine Learning, Sydney, Australia, 650-657, 2002. BibTeX:
@phdthesis{Wang2000, address = {Hamilton, New Zealand}, author = {Wang, Y}, school = {Department of Computer Science, University of Waikato}, title = {A new approach to fitting linear models in high dimensional spaces}, year = {2000} } @inproceedings{Wang2002, address = {Sydney, Australia}, author = {Wang, Y. and Witten, I. H.}, booktitle = {Proceedings of the Nineteenth International Conference in Machine Learning}, pages = {650-657}, title = {Modeling for optimal probability prediction}, year = {2002} }
- Version:
- $Revision: 1.5 $
- Author:
- Yong Wang (yongwang@cs.waikato.ac.nz)
-
Field Summary
Fields inherited from class weka.classifiers.functions.pace.MixtureDistribution
NNMMethod, PMMethod
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondouble
f
(double x) Computes the value of f(x) given the mixture.f
(DoubleVector x) Computes the value of f(x) given the mixture, where x is a vector.fittingIntervals
(DoubleVector data) Contructs the set of fitting intervals for mixture estimation.Returns the revision string.double
Gets the separating threshold value.double
Gets the triming thresholding value.double
h
(double AHat) Computes the value of h(x) given the mixture.h
(DoubleVector AHat) Computes the value of h(x) given the mixture, where x is a vector.double
hf
(double AHat) Computes the value of h(x) / f(x) given the mixture.static void
Method to test this classReturns the pace2 estimate of a vector.Returns the pace4 estimate of a vector.double
pace6
(double x) Returns the pace6 estimate of a single value.Returns the pace6 estimate of a vector.probabilityMatrix
(DoubleVector s, PaceMatrix intervals) Contructs the probability matrix for mixture estimation, given a set of support points and a set of intervals.boolean
separable
(DoubleVector data, int i0, int i1, double x) Return true if a value can be considered for mixture estimation separately from the data indexed between i0 and i1void
setSeparatingThreshold
(double t) Sets the separating threshold valuevoid
setTrimingThreshold
(double t) Sets the triming thresholding value.supportPoints
(DoubleVector data, int ne) Contructs the set of support points for mixture estimation.toString()
Converts to a stringvoid
trim
(DoubleVector x) Trims the small values of the estaimteMethods inherited from class weka.classifiers.functions.pace.MixtureDistribution
empiricalProbability, fit, fit, fitForSingleCluster, getMixingDistribution, getTechnicalInformation, setMixingDistribution
-
Constructor Details
-
ChisqMixture
public ChisqMixture()Contructs an empty ChisqMixture
-
-
Method Details
-
getSeparatingThreshold
public double getSeparatingThreshold()Gets the separating threshold value. This value is used by the method separatable- Returns:
- the separating threshold
-
setSeparatingThreshold
public void setSeparatingThreshold(double t) Sets the separating threshold value- Parameters:
t
- the threshold value
-
getTrimingThreshold
public double getTrimingThreshold()Gets the triming thresholding value. This value is usef by the method trim.- Returns:
- the triming threshold
-
setTrimingThreshold
public void setTrimingThreshold(double t) Sets the triming thresholding value.- Parameters:
t
- the triming threshold
-
separable
Return true if a value can be considered for mixture estimation separately from the data indexed between i0 and i1- Specified by:
separable
in classMixtureDistribution
- Parameters:
data
- the data supposedly generated from the mixturei0
- the index of the first element in the groupi1
- the index of the last element in the groupx
- the value- Returns:
- true if the value can be considered
-
supportPoints
Contructs the set of support points for mixture estimation.- Specified by:
supportPoints
in classMixtureDistribution
- Parameters:
data
- the data supposedly generated from the mixturene
- the number of extra data that are suppposedly discarded earlier and not passed into here- Returns:
- the set of support points
-
fittingIntervals
Contructs the set of fitting intervals for mixture estimation.- Specified by:
fittingIntervals
in classMixtureDistribution
- Parameters:
data
- the data supposedly generated from the mixture- Returns:
- the set of fitting intervals
-
probabilityMatrix
Contructs the probability matrix for mixture estimation, given a set of support points and a set of intervals.- Specified by:
probabilityMatrix
in classMixtureDistribution
- Parameters:
s
- the set of support pointsintervals
- the intervals- Returns:
- the probability matrix
-
pace6
public double pace6(double x) Returns the pace6 estimate of a single value.- Parameters:
x
- the value- Returns:
- the pace6 estimate
-
pace6
Returns the pace6 estimate of a vector.- Parameters:
x
- the vector- Returns:
- the pace6 estimate
-
pace2
Returns the pace2 estimate of a vector.- Parameters:
x
- the vector- Returns:
- the pace2 estimate
-
pace4
Returns the pace4 estimate of a vector.- Parameters:
x
- the vector- Returns:
- the pace4 estimate
-
trim
Trims the small values of the estaimte- Parameters:
x
- the estimate vector
-
hf
public double hf(double AHat) Computes the value of h(x) / f(x) given the mixture. The implementation avoided overflow.- Parameters:
AHat
- the value- Returns:
- the value of h(x) / f(x)
-
h
public double h(double AHat) Computes the value of h(x) given the mixture.- Parameters:
AHat
- the value- Returns:
- the value of h(x)
-
h
Computes the value of h(x) given the mixture, where x is a vector.- Parameters:
AHat
- the vector- Returns:
- the value of h(x)
-
f
public double f(double x) Computes the value of f(x) given the mixture.- Parameters:
x
- the value- Returns:
- the value of f(x)
-
f
Computes the value of f(x) given the mixture, where x is a vector.- Parameters:
x
- the vector- Returns:
- the value of f(x)
-
toString
Converts to a string- Overrides:
toString
in classMixtureDistribution
- Returns:
- a string representation
-
getRevision
Returns the revision string.- Returns:
- the revision
-
main
Method to test this class- Parameters:
args
- the commandline arguments
-