56 template <
typename GUM_SCALAR >
67 template <
typename GUM_SCALAR >
73 template <
typename GUM_SCALAR >
85 template <
typename GUM_SCALAR >
89 "No Bayes net has been assigned to the "
90 "inference algorithm");
92 const auto& dag = this->
BN().dag();
93 for (
const auto var: vars) {
101 template <
typename GUM_SCALAR >
107 template <
typename GUM_SCALAR >
118 template <
typename GUM_SCALAR >
125 template <
typename GUM_SCALAR >
130 "No Bayes net has been assigned to the "
131 "inference algorithm");
133 const auto& dag = this->
BN().dag();
134 for (
const auto node: joint_target) {
135 if (!dag.exists(node)) {
137 "at least one one in " << joint_target <<
" does not belong to the bn");
146 if (target.isStrictSupersetOf(joint_target))
return;
162 template <
typename GUM_SCALAR >
167 "No Bayes net has been assigned to the "
168 "inference algorithm");
170 const auto& dag = this->
BN().dag();
171 for (
const auto node: joint_target) {
172 if (!dag.exists(node)) {
174 "at least one one in " << joint_target <<
" does not belong to the bn");
189 template <
typename GUM_SCALAR >
195 template <
typename GUM_SCALAR >
205 template <
typename GUM_SCALAR >
206 const Tensor< GUM_SCALAR >&
210 bool found_exact_target =
false;
214 found_exact_target =
true;
237 template <
typename GUM_SCALAR >
244 template <
typename GUM_SCALAR >
245 const Tensor< GUM_SCALAR >&
250 template <
typename GUM_SCALAR >
254 if (!(evs *
targets).empty()) {
256 "Targets (" <<
targets <<
") can not intersect evs (" << evs <<
").");
258 auto condset = this->
BN().minimalCondSet(
targets, evs);
264 Tensor< GUM_SCALAR > res;
265 for (
const auto& target:
targets) {
266 res.add(this->
BN().variable(target));
267 iTarget.
add(this->
BN().variable(target));
271 for (
const auto& n: condset) {
272 res.add(this->
BN().variable(n));
279 for (
const auto& n: condset)
292 template <
typename GUM_SCALAR >
294 const std::vector< std::string >&
targets,
295 const std::vector< std::string >& evs) {
296 const auto& bn = this->
BN();
300 template <
typename GUM_SCALAR >
302 const auto& bn = this->
BN();
306 "jointMutualInformation needs at least 2 variables (targets=" <<
targets <<
")");
317 for (
const auto nod:
targets) {
318 const auto& var = bn.variable(nod);
320 caracteristic.
add(*pv);
326 const GUM_SCALAR start = (siz % 2 == 0) ? GUM_SCALAR(-1.0) : GUM_SCALAR(1.0);
328 GUM_SCALAR res = GUM_SCALAR(0.0);
331 for (caracteristic.
inc(); !caracteristic.
end(); caracteristic.
inc()) {
334 for (
Idx i = 0; i < caracteristic.
nbrDim(); i++) {
335 if (caracteristic.
val(i) == 1) {
340 res += sign * po.sumIn(sov).entropy();
343 for (
Idx i = 0; i < caracteristic.
nbrDim(); i++) {
350 template <
typename GUM_SCALAR >
352 const std::vector< std::string >&
targets) {
void _setBayesNetDuringConstruction_(const IBayesNet< GUM_SCALAR > *bn)
assigns a BN during the inference engine construction
virtual const IBayesNet< GUM_SCALAR > & BN() const final
Returns a constant reference over the IBayesNet referenced by this class.
virtual void setState_(const StateOfInference state) final
set the state of the inference engine and call the notification onStateChanged_ when necessary (i....
virtual void chgEvidence(NodeId id, const Idx val) final
change the value of an already existing hard evidence
virtual void addEvidence(NodeId id, const Idx val) final
adds a new hard evidence on node id
virtual void eraseAllEvidence() final
removes all the evidence entered into the network
virtual void makeInference() final
perform the heavy computations needed to compute the targets' posteriors
virtual bool isInferenceDone() const noexcept final
returns whether the inference object is in a InferenceDone state
Virtual base class for probabilistic graphical models.
Class representing the minimal interface for Bayesian network with no numerical data.
Class for assigning/browsing values to tuples of discrete variables.
void incIn(const Instantiation &i)
Operator increment for the variables in i.
bool end() const
Returns true if the Instantiation reached the end.
void incOut(const Instantiation &i)
Operator increment for the variables not in i.
void setFirstIn(const Instantiation &i)
Assign the first values in the Instantiation for the variables in i.
void add(const DiscreteVariable &v) final
Adds a new variable in the Instantiation.
void inc()
Operator increment.
Idx val(Idx i) const
Returns the current value of the variable at position i.
void setFirst()
Assign the first values to the tuple of the Instantiation.
void setFirstOut(const Instantiation &i)
Assign the first values in the Instantiation for the variables not in i.
const DiscreteVariable & variable(Idx i) const final
Returns the variable at position i in the tuple.
Idx nbrDim() const final
Returns the number of variables in the Instantiation.
Exception: at least one argument passed to a function is not what was expected.
virtual const Tensor< GUM_SCALAR > & posterior(NodeId node) final
Computes and returns the posterior of a node.
Tensor< GUM_SCALAR > evidenceJointImpact(const NodeSet &targets, const NodeSet &evs)
Create a gum::Tensor for P(joint targets|evs) (for all instanciation of targets and evs).
virtual void eraseAllMarginalTargets() final
Clear all the previously defined marginal targets.
virtual void onModelChanged_(const GraphicalModel *bn)
fired after a new Bayes net has been assigned to the engine
virtual void onAllJointTargetsErased_()=0
fired before a all the joint targets are removed
Set< NodeSet > _joint_targets_
the set of joint targets
virtual bool isJointTarget(const NodeSet &vars) const final
return true if target is a joint target.
virtual const Set< NodeSet > & jointTargets() const noexcept final
returns the list of joint targets
virtual void eraseAllTargets()
Clear all previously defined targets (marginal and joint targets).
virtual void onJointTargetErased_(const NodeSet &set)=0
fired before a joint target is removed
virtual ~JointTargetedInference()
destructor
virtual void addJointTarget(const NodeSet &joint_target) final
Add a set of nodes as a new joint target. As a collateral effect, every node is added as a marginal t...
virtual void onJointTargetAdded_(const NodeSet &set)=0
fired after a new joint target is inserted
JointTargetedInference(const IBayesNet< GUM_SCALAR > *bn)
default constructor
virtual const Tensor< GUM_SCALAR > & jointPosterior_(const NodeSet &set)=0
asks derived classes for the joint posterior of a declared target set
virtual void eraseAllJointTargets() final
Clear all previously defined joint targets.
virtual const Tensor< GUM_SCALAR > & jointPosterior(const NodeSet &nodes) final
Compute the joint posterior of a set of nodes.
virtual Size nbrJointTargets() const noexcept final
returns the number of joint targets
virtual void eraseJointTarget(const NodeSet &joint_target) final
removes an existing joint target
GUM_SCALAR jointMutualInformation(const NodeSet &targets)
Mutual information between targets.
virtual const Tensor< GUM_SCALAR > & posterior(NodeId node)
Computes and returns the posterior of a node.
virtual void eraseAllTargets()
Clear all previously defined targets.
virtual const NodeSet & targets() const noexcept final
returns the list of marginal targets
MarginalTargetedInference(const IBayesNet< GUM_SCALAR > *bn)
default constructor
virtual bool isTarget(NodeId node) const final
return true if variable is a (marginal) target
virtual void onModelChanged_(const GraphicalModel *bn)
fired after a new Bayes net has been assigned to the engine
Exception : a pointer or a reference on a nullptr (0) object.
Defines a discrete random variable over an integer interval.
bool isStrictSubsetOf(const Set< Key > &s) const
void insert(const Key &k)
Inserts a new element into the set.
bool empty() const noexcept
Indicates whether the set is the empty set.
void clear()
Removes all the elements, if any, from the set.
Exception : a looked-for element could not be found.
#define GUM_ERROR(type, msg)
std::size_t Size
In aGrUM, hashed values are unsigned long int.
Size Idx
Type for indexes.
Size NodeId
Type for node ids.
Set< NodeId > NodeSet
Some typdefs and define for shortcuts ...
This file contains the abstract inference class definition for computing (incrementally) joint poster...
gum is the global namespace for all aGrUM entities
Set< const DiscreteVariable * > VariableSet
Header of gumRangeVariable.