Package edu.cmu.tetrad.bayes
Class JunctionTreeUpdater
java.lang.Object
edu.cmu.tetrad.bayes.JunctionTreeUpdater
- All Implemented Interfaces:
BayesUpdater
,ManipulatingBayesUpdater
,TetradSerializable
,Serializable
Jan 21, 2020 11:03:09 AM
- Author:
- Kevin V. Bui (kvb2@pitt.edu)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJunctionTreeUpdater
(BayesIm bayesIm) JunctionTreeUpdater
(BayesIm bayesIm, Evidence evidence) -
Method Summary
Modifier and TypeMethodDescriptiondouble[]
calculatePriorMarginals
(int nodeIndex) double[]
calculateUpdatedMarginals
(int nodeIndex) double
getJointMarginal
(int[] variables, int[] values) double
getMarginal
(int variable, int category) boolean
void
setEvidence
(Evidence evidence) Sets new evidence for the updater.toString()
-
Constructor Details
-
JunctionTreeUpdater
-
JunctionTreeUpdater
-
-
Method Details
-
getManipulatedBayesIm
- Specified by:
getManipulatedBayesIm
in interfaceManipulatingBayesUpdater
- Returns:
- the Bayes instantiated model after manipulations have been applied.
-
getManipulatedGraph
- Specified by:
getManipulatedGraph
in interfaceManipulatingBayesUpdater
- Returns:
- the graph for the manipulated BayesIm.
-
getEvidence
- Specified by:
getEvidence
in interfaceManipulatingBayesUpdater
- Returns:
- a defensive copy of the evidence.
-
setEvidence
Description copied from interface:ManipulatingBayesUpdater
Sets new evidence for the updater. Once this is called, old updating results should not longer be available.- Specified by:
setEvidence
in interfaceBayesUpdater
- Specified by:
setEvidence
in interfaceManipulatingBayesUpdater
-
getUpdatedBayesIm
- Specified by:
getUpdatedBayesIm
in interfaceManipulatingBayesUpdater
- Returns:
- the updated Bayes IM--that is, the Bayes IM in which all probabilities of variables conditional on their parents have been updated.
-
getMarginal
public double getMarginal(int variable, int category) - Specified by:
getMarginal
in interfaceBayesUpdater
- Specified by:
getMarginal
in interfaceManipulatingBayesUpdater
- Returns:
- P(variable = category | evidence) where evidence is getEvidence().
-
isJointMarginalSupported
public boolean isJointMarginalSupported()- Specified by:
isJointMarginalSupported
in interfaceBayesUpdater
- Returns:
- true if the getJointMarginal() method is supported.
-
getJointMarginal
public double getJointMarginal(int[] variables, int[] values) - Specified by:
getJointMarginal
in interfaceBayesUpdater
- Returns:
- P(variables[i] = values[i] | evidence), where evidence is getEvidence().
-
getBayesIm
- Specified by:
getBayesIm
in interfaceBayesUpdater
- Returns:
- the Bayes instantiated model that is being updated.
-
calculatePriorMarginals
public double[] calculatePriorMarginals(int nodeIndex) - Specified by:
calculatePriorMarginals
in interfaceBayesUpdater
-
calculateUpdatedMarginals
public double[] calculateUpdatedMarginals(int nodeIndex) - Specified by:
calculateUpdatedMarginals
in interfaceBayesUpdater
-
toString
-