aGrUM 2.3.2
a C++ library for (probabilistic) graphical models
paramEstimatorML.h
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
47#ifndef GUM_LEARNING_PARAM_ESTIMATOR_ML_H
48#define GUM_LEARNING_PARAM_ESTIMATOR_ML_H
49
50#include <sstream>
51
52#include <agrum/agrum.h>
53
55
56namespace gum {
57
58 namespace learning {
59
66 public:
67 // ##########################################################################
69 // ##########################################################################
71
73
95 const Prior& external_prior,
96 const Prior& _score_internal_prior,
97 const std::vector< std::pair< std::size_t, std::size_t > >& ranges,
98 const Bijection< NodeId, std::size_t >& nodeId2columns
100
102
118 const Prior& external_prior,
119 const Prior& _score_internal_prior,
120 const Bijection< NodeId, std::size_t >& nodeId2columns
122
125
128
130 virtual ParamEstimatorML* clone() const;
131
134
136
137
138 // ##########################################################################
140 // ##########################################################################
141
143
146
149
151
152
153 // ##########################################################################
155 // ##########################################################################
157
159
161
168 virtual std::vector< double > parameters(const NodeId target_node,
169 const std::vector< NodeId >& conditioning_nodes);
170
183 virtual std::pair< std::vector< double >, double >
185 const std::vector< NodeId >& conditioning_nodes);
186
188
189 private:
190 std::pair< std::vector< double >, double >
192 const std::vector< NodeId >& conditioning_nodes,
193 const bool compute_log_likelihood);
194 };
195
196 } /* namespace learning */
197
198} /* namespace gum */
199
200// include the inlined functions if necessary
201#ifndef GUM_NO_INLINE
203#endif /* GUM_NO_INLINE */
204
205#endif /* GUM_LEARNING_PARAM_ESTIMATOR_ML_H */
the class used to read a row in the database and to transform it into a set of DBRow instances that c...
ParamEstimatorML & operator=(const ParamEstimatorML &from)
copy operator
virtual std::pair< std::vector< double >, double > parametersAndLogLikelihood(const NodeId target_node, const std::vector< NodeId > &conditioning_nodes)
returns the parameters of a CPT as well as its log-likelihood
virtual ~ParamEstimatorML()
destructor
ParamEstimatorML & operator=(ParamEstimatorML &&from)
move operator
ParamEstimatorML(const DBRowGeneratorParser &parser, const Prior &external_prior, const Prior &_score_internal_prior, const Bijection< NodeId, std::size_t > &nodeId2columns=Bijection< NodeId, std::size_t >())
default constructor
virtual std::vector< double > parameters(const NodeId target_node, const std::vector< NodeId > &conditioning_nodes)
returns the CPT's parameters corresponding to a given nodeset
ParamEstimatorML(const ParamEstimatorML &from)
copy constructor
virtual ParamEstimatorML * clone() const
virtual copy constructor
std::pair< std::vector< double >, double > _parametersAndLogLikelihood_(const NodeId target_node, const std::vector< NodeId > &conditioning_nodes, const bool compute_log_likelihood)
ParamEstimatorML(const DBRowGeneratorParser &parser, const Prior &external_prior, const Prior &_score_internal_prior, const std::vector< std::pair< std::size_t, std::size_t > > &ranges, const Bijection< NodeId, std::size_t > &nodeId2columns=Bijection< NodeId, std::size_t >())
default constructor
ParamEstimatorML(ParamEstimatorML &&from)
move constructor
ParamEstimator(const DBRowGeneratorParser &parser, const Prior &external_prior, const Prior &_score_internal_prior, const std::vector< std::pair< std::size_t, std::size_t > > &ranges, const Bijection< NodeId, std::size_t > &nodeId2columns=Bijection< NodeId, std::size_t >())
default constructor
const std::vector< std::pair< std::size_t, std::size_t > > & ranges() const
returns the current ranges
std::vector< double > parameters(const NodeId target_node)
returns the CPT's parameters corresponding to a given target node
the base class for all a priori
Definition prior.h:83
Size NodeId
Type for node ids.
include the inlined functions if necessary
Definition CSVParser.h:54
gum is the global namespace for all aGrUM entities
Definition agrum.h:46
the class for estimating parameters of CPTs using Maximum Likelihood
the base class for estimating parameters of CPTs