aGrUM 2.3.2
a C++ library for (probabilistic) graphical models
scorefNML.cpp
Go to the documentation of this file.
1/****************************************************************************
2 * This file is part of the aGrUM/pyAgrum library. *
3 * *
4 * Copyright (c) 2005-2025 by *
5 * - Pierre-Henri WUILLEMIN(_at_LIP6) *
6 * - Christophe GONZALES(_at_AMU) *
7 * *
8 * The aGrUM/pyAgrum library is free software; you can redistribute it *
9 * and/or modify it under the terms of either : *
10 * *
11 * - the GNU Lesser General Public License as published by *
12 * the Free Software Foundation, either version 3 of the License, *
13 * or (at your option) any later version, *
14 * - the MIT license (MIT), *
15 * - or both in dual license, as here. *
16 * *
17 * (see https://agrum.gitlab.io/articles/dual-licenses-lgplv3mit.html) *
18 * *
19 * This aGrUM/pyAgrum library is distributed in the hope that it will be *
20 * useful, but WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, *
21 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES MERCHANTABILITY or FITNESS *
22 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, *
25 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR *
26 * OTHER DEALINGS IN THE SOFTWARE. *
27 * *
28 * See LICENCES for more details. *
29 * *
30 * SPDX-FileCopyrightText: Copyright 2005-2025 *
31 * - Pierre-Henri WUILLEMIN(_at_LIP6) *
32 * - Christophe GONZALES(_at_AMU) *
33 * SPDX-License-Identifier: LGPL-3.0-or-later OR MIT *
34 * *
35 * Contact : info_at_agrum_dot_org *
36 * homepage : http://agrum.gitlab.io *
37 * gitlab : https://gitlab.com/agrumery/agrum *
38 * *
39 ****************************************************************************/
40
41
48
50
51#ifndef DOXYGEN_SHOULD_SKIP_THIS
52
54# ifdef GUM_NO_INLINE
56# endif /* GUM_NO_INLINE */
57
58namespace gum {
59
60 namespace learning {
61
64 if (this != &from) {
65 Score::operator=(from);
66 _internal_prior_ = from._internal_prior_;
67 }
68 return *this;
69 }
70
73 if (this != &from) {
74 Score::operator=(std::move(from));
75 _internal_prior_ = std::move(from._internal_prior_);
76 }
77 return *this;
78 }
79
81 std::string ScorefNML::isPriorCompatible(PriorType prior_type, double weight) {
82 // check that the prior is compatible with the score
83 if ((prior_type == PriorType::DirichletPriorType)
84 || (prior_type == PriorType::SmoothingPriorType)
85 || (prior_type == PriorType::NoPriorType)) {
86 return "";
87 }
88
89 // prior types unsupported by the type checker
90 std::stringstream msg;
91 msg << "The prior '" << priorTypeToString(prior_type)
92 << "' is not yet compatible with the score 'fNML'.";
93 return msg.str();
94 }
95
97 double ScorefNML::score_(const IdCondSet& idset) {
98 // get the counts for all the nodes in the idset and add the prior
99 std::vector< double > N_ijk(this->counter_.counts(idset, true));
100 const bool informative_external_prior = this->prior_->isInformative();
101 if (informative_external_prior) this->prior_->addJointPseudoCount(idset, N_ijk);
102 const std::size_t all_size = N_ijk.size();
103
104 // here, we distinguish idsets with conditioning nodes from those
105 // without conditioning nodes
106 if (idset.hasConditioningSet()) {
107 // get the counts for the conditioning nodes
108 std::vector< double > N_ij(this->marginalize_(idset[0], N_ijk));
109 const std::size_t target_domsize = all_size / N_ij.size();
110
111 // compute the score: it remains to compute the log likelihood, i.e.,
112 // sum_k=1^r_i sum_j=1^q_i N_ijk log (N_ijk / N_ij), which is also
113 // equivalent to:
114 // sum_j=1^q_i sum_k=1^r_i N_ijk log N_ijk - sum_j=1^q_i N_ij log N_ij
115 double score = 0.0;
116 for (const auto n_ijk: N_ijk) {
117 if (n_ijk) { score += n_ijk * std::log(n_ijk); }
118 }
119 for (const auto n_ij: N_ij) {
120 if (n_ij) { score -= n_ij * std::log(n_ij); }
121 }
122
123 // divide by log(2), since the log likelihood uses log_2
124 score *= this->one_log2_;
125
126 // finally, remove the penalty
127 double penalty = 0.0;
128 for (const auto n_ij: N_ij) {
129 penalty += _ctable_.log2Cnr(target_domsize, n_ij);
130 }
131
132 score -= penalty;
133
134 return score;
135 } else {
136 // here, there are no conditioning nodes
137
138 // compute the score: it remains to compute the log likelihood, i.e.,
139 // sum_k=1^r_i N_ijk log (N_ijk / N), which is also
140 // equivalent to:
141 // sum_j=1^q_i sum_k=1^r_i N_ijk log N_ijk - N log N
142 double N = 0.0;
143 double score = 0.0;
144 for (const auto n_ijk: N_ijk) {
145 if (n_ijk) {
146 score += n_ijk * std::log(n_ijk);
147 N += n_ijk;
148 }
149 }
150 score -= N * std::log(N);
151
152 // divide by log(2), since the log likelihood uses log_2
153 score *= this->one_log2_;
154
155 // finally, remove the penalty
156 score -= _ctable_.log2Cnr(all_size, N);
157
158 return score;
159 }
160 }
161
162 } /* namespace learning */
163
164} /* namespace gum */
165
166#endif /* DOXYGEN_SHOULD_SKIP_THIS */
A class for storing a pair of sets of NodeIds, the second one corresponding to a conditional set.
Definition idCondSet.h:214
Prior * prior_
the expert knowledge a priorwe add to the score
Definition score.h:238
double score(const NodeId var)
returns the score of a single node
Score & operator=(const Score &from)
copy operator
RecordCounter counter_
the record counter used for the counts over discrete variables
Definition score.h:241
const double one_log2_
1 / log(2)
Definition score.h:235
std::vector< double > marginalize_(const NodeId X_id, const std::vector< double > &N_xyz) const
returns a counting vector where variables are marginalized from N_xyz
the class for computing fNML scores
Definition scorefNML.h:73
virtual std::string isPriorCompatible() const final
indicates whether the prior is compatible (meaningful) with the score
ScorefNML & operator=(const ScorefNML &from)
copy operator
virtual double score_(const IdCondSet &idset) final
returns the score for a given IdCondSet
include the inlined functions if necessary
Definition CSVParser.h:54
constexpr const char * priorTypeToString(PriorType e) noexcept
Definition prior.h:68
gum is the global namespace for all aGrUM entities
Definition agrum.h:46
the class for computing fNML scores
the class for computing fNML scores