aGrUM 2.3.2
a C++ library for (probabilistic) graphical models
DBRowGeneratorEM.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_DBROW_GENERATOR_EM_H
48#define GUM_LEARNING_DBROW_GENERATOR_EM_H
49
50#include <vector>
51
52#include <agrum/agrum.h>
53
55
56namespace gum {
57
58 namespace learning {
59
96 template < typename GUM_SCALAR = double >
97 class DBRowGeneratorEM: public DBRowGeneratorWithBN< GUM_SCALAR > {
98 public:
99 // ##########################################################################
101 // ##########################################################################
102
104
106 DBRowGeneratorEM(const std::vector< DBTranslatedValueType >& column_types,
107 const BayesNet< GUM_SCALAR >& bn,
108 const Bijection< NodeId, std::size_t >& nodeId2columns
110
113
116
119
122
124
125
126 // ##########################################################################
128 // ##########################################################################
129
131
133 DBRowGeneratorEM< GUM_SCALAR >& operator=(const DBRowGeneratorEM< GUM_SCALAR >& from);
134
136 DBRowGeneratorEM< GUM_SCALAR >& operator=(DBRowGeneratorEM< GUM_SCALAR >&& from);
137
139
140
141 // ##########################################################################
143 // ##########################################################################
144
146
148 virtual const DBRow< DBTranslatedValue >& generate() override final;
149
151 virtual void setBayesNet(const BayesNet< GUM_SCALAR >& new_bn) override final;
152
154
155
156 protected:
158 virtual std::size_t computeRows_(const DBRow< DBTranslatedValue >& row) override final;
159
160
161#ifndef DOXYGEN_SHOULD_SKIP_THIS
162
163 private:
165 const DBRow< DBTranslatedValue >* _input_row_{nullptr};
166
168 std::vector< std::size_t > _missing_cols_;
169
171 std::size_t _nb_miss_;
172
174 Tensor< GUM_SCALAR > _joint_proba_;
175
177 Instantiation* _joint_inst_{nullptr};
178
180
186 DBRow< DBTranslatedValue > _filled_row1_;
187
189 DBRow< DBTranslatedValue > _filled_row2_;
190
192 bool _use_filled_row1_{true};
193
195 double _original_weight_;
196
197
198#endif /* DOXYGEN_SHOULD_SKIP_THIS */
199 };
200
201 } /* namespace learning */
202
203} /* namespace gum */
204
205// always include the template implementation
207
208#endif /* GUM_LEARNING_DBROW_GENERATOR_EM_H */
A DBRowGenerator class that returns incomplete rows as EM would do.
Base class for DBRowGenerator classes that use a BN for computing their outputs.
Class representing a Bayesian network.
Definition BayesNet.h:93
Class for assigning/browsing values to tuples of discrete variables.
DBRowGeneratorEM< GUM_SCALAR > * clone() const final
virtual copy constructor
DBRowGeneratorEM(const std::vector< DBTranslatedValueType > &column_types, const BayesNet< GUM_SCALAR > &bn, const Bijection< NodeId, std::size_t > &nodeId2columns=Bijection< NodeId, std::size_t >())
default constructor
DBRowGeneratorEM(const DBRowGeneratorEM< GUM_SCALAR > &from)
copy constructor
DBRowGeneratorEM(DBRowGeneratorEM< GUM_SCALAR > &&from)
move constructor
virtual const DBRow< DBTranslatedValue > & generate() override final
generates one ouput DBRow for each DBRow passed to method setInputRow
virtual std::size_t computeRows_(const DBRow< DBTranslatedValue > &row) override final
computes the rows it will provide as output
virtual void setBayesNet(const BayesNet< GUM_SCALAR > &new_bn) override final
assign a new Bayes net to the generator
DBRowGeneratorWithBN(const std::vector< DBTranslatedValueType > &column_types, const BayesNet< double > &bn, const DBRowGeneratorGoal goal, const Bijection< NodeId, std::size_t > &nodeId2columns=Bijection< NodeId, std::size_t >())
The class for storing a record in a database.
Definition DBRow.h:75
include the inlined functions if necessary
Definition CSVParser.h:54
gum is the global namespace for all aGrUM entities
Definition agrum.h:46
STL namespace.
The union class for storing the translated values in learning databases.