![]() |
aGrUM 2.3.2
a C++ library for (probabilistic) graphical models
|
A pack of learning algorithms that can easily be used. More...
#include <IBNLearner.h>
Classes | |
| class | Database |
| a helper to easily read databases More... | |
Public Types | |
| enum class | ScoreType { AIC , BD , BDeu , BIC , K2 , LOG2LIKELIHOOD } |
| an enumeration enabling to select easily the score we wish to use More... | |
| enum class | ParamEstimatorType { ML } |
| an enumeration to select the type of parameter estimation we shall apply More... | |
| enum class | BNLearnerPriorType { NO_prior , SMOOTHING , DIRICHLET_FROM_DATABASE , DIRICHLET_FROM_BAYESNET , BDEU } |
| an enumeration to select the prior More... | |
| enum class | AlgoType { K2 , GREEDY_HILL_CLIMBING , LOCAL_SEARCH_WITH_TABU_LIST , MIIC } |
| an enumeration to select easily the learning algorithm to use More... | |
| enum class | ApproximationSchemeSTATE : char { Undefined , Continue , Epsilon , Rate , Limit , TimeLimit , Stopped } |
| The different state of an approximation scheme. More... | |
Public Member Functions | |
| void | setMandatoryArcs (const ArcSet &set) |
| assign a set of mandatory arcs | |
Constructors / Destructors | |
| IBNLearner (const std::string &filename, const std::vector< std::string > &missingSymbols, bool induceTypes=true) | |
| read the database file for the score / parameter estimation and var names | |
| IBNLearner (const DatabaseTable &db) | |
| read the database file for the score / parameter estimation and var names | |
| template<typename GUM_SCALAR> | |
| IBNLearner (const std::string &filename, const gum::BayesNet< GUM_SCALAR > &src, const std::vector< std::string > &missing_symbols) | |
| read the database file for the score / parameter estimation and var names | |
| IBNLearner (const IBNLearner &) | |
| copy constructor | |
| IBNLearner (IBNLearner &&) | |
| move constructor | |
| virtual | ~IBNLearner () |
| destructor | |
Operators | |
| IBNLearner & | operator= (const IBNLearner &) |
| copy operator | |
| IBNLearner & | operator= (IBNLearner &&) |
| move operator | |
Accessors / Modifiers | |
| DAG | learnDAG () |
| learn a structure from a file (must have read the db before) | |
| PDAG | learnPDAG () |
| learn a partial structure from a file (must have read the db before and must have selected miic) | |
| void | setInitialDAG (const DAG &) |
| sets an initial DAG structure | |
| DAG | initialDAG () |
| returns the initial DAG structure | |
| const std::vector< std::string > & | names () const |
| returns the names of the variables in the database | |
| const std::vector< std::size_t > & | domainSizes () const |
| returns the domain sizes of the variables in the database | |
| Size | domainSize (NodeId var) const |
| learn a structure from a file (must have read the db before) | |
| Size | domainSize (const std::string &var) const |
| learn a structure from a file (must have read the db before) | |
| NodeId | idFromName (const std::string &var_name) const |
| returns the node id corresponding to a variable name | |
| const DatabaseTable & | database () const |
| returns the database used by the BNLearner | |
| void | setDatabaseWeight (const double new_weight) |
| assign a weight to all the rows of the learning database so that the sum of their weights is equal to new_weight | |
| void | setRecordWeight (const std::size_t i, const double weight) |
| sets the weight of the ith record of the database | |
| double | recordWeight (const std::size_t i) const |
| returns the weight of the ith record | |
| double | databaseWeight () const |
| returns the weight of the whole database | |
| const std::string & | nameFromId (NodeId id) const |
| returns the variable name corresponding to a given node id | |
| void | useDatabaseRanges (const std::vector< std::pair< std::size_t, std::size_t > > &new_ranges) |
| use a new set of database rows' ranges to perform learning | |
| void | clearDatabaseRanges () |
| reset the ranges to the one range corresponding to the whole database | |
| const std::vector< std::pair< std::size_t, std::size_t > > & | databaseRanges () const |
| returns the current database rows' ranges used for learning | |
| std::pair< std::size_t, std::size_t > | useCrossValidationFold (const std::size_t learning_fold, const std::size_t k_fold) |
| sets the ranges of rows to be used for cross-validation learning | |
| std::pair< double, double > | chi2 (NodeId id1, NodeId id2, const std::vector< NodeId > &knowing={}) |
| Return the <statistic,pvalue> pair for chi2 test in the database. | |
| std::pair< double, double > | chi2 (const std::string &name1, const std::string &name2, const std::vector< std::string > &knowing={}) |
| Return the <statistic,pvalue> pair for the BNLearner. | |
| std::pair< double, double > | G2 (NodeId id1, NodeId id2, const std::vector< NodeId > &knowing={}) |
| Return the <statistic,pvalue> pair for for G2 test in the database. | |
| std::pair< double, double > | G2 (const std::string &name1, const std::string &name2, const std::vector< std::string > &knowing={}) |
| Return the <statistic,pvalue> pair for for G2 test in the database. | |
| double | logLikelihood (const std::vector< NodeId > &vars, const std::vector< NodeId > &knowing={}) |
| Return the loglikelihood of vars in the base, conditioned by knowing for the BNLearner. | |
| double | logLikelihood (const std::vector< std::string > &vars, const std::vector< std::string > &knowing={}) |
| Return the loglikelihood of vars in the base, conditioned by knowing for the BNLearner. | |
| double | mutualInformation (NodeId id1, NodeId id2, const std::vector< NodeId > &knowing={}) |
| Return the mutual information of id1 and id2 in the base, conditioned by knowing for the BNLearner. | |
| double | mutualInformation (const std::string &var1, const std::string &var2, const std::vector< std::string > &knowing={}) |
| Return the mutual information of var1 and var2 in the base, conditioned by knowing for the BNLearner. | |
| double | correctedMutualInformation (NodeId id1, NodeId id2, const std::vector< NodeId > &knowing={}) |
| Return the mutual information of id1 and id2 in the base, conditioned by knowing for the BNLearner. | |
| double | correctedMutualInformation (const std::string &var1, const std::string &var2, const std::vector< std::string > &knowing={}) |
| Return the mutual information of var1 and var2 in the base, conditioned by knowing for the BNLearner. | |
| double | score (NodeId vars, const std::vector< NodeId > &knowing={}) |
| Return the value of the score currently in use by the BNLearner of a variable given a set of other variables. | |
| double | score (const std::string &vars, const std::vector< std::string > &knowing={}) |
| Return the value of the score currently in use by the BNLearner of a variable given a set of other variables The score used is the one currently selected in the BNLearner. | |
| std::vector< double > | rawPseudoCount (const std::vector< NodeId > &vars) |
| Return the pseudo-counts of NodeIds vars in the base in a raw array. | |
| std::vector< double > | rawPseudoCount (const std::vector< std::string > &vars) |
| Return the pseudoconts of vars in the base in a raw array. | |
| Size | nbCols () const |
| Size | nbRows () const |
| void | useEM (const double epsilon, const double noise=default_EM_noise) |
| use The EM algorithm to learn parameters | |
| void | useEMWithRateCriterion (const double epsilon, const double noise=default_EM_noise) |
| use The EM algorithm to learn parameters with the rate stopping criterion | |
| void | useEMWithDiffCriterion (const double epsilon, const double noise=default_EM_noise) |
| use The EM algorithm to learn parameters with the diff stopping criterion | |
| void | forbidEM () |
| prevent using the EM algorithm for parameter learning | |
| bool | isUsingEM () const |
| indicates whether we use EM for parameter learning | |
| EMApproximationScheme & | EM () |
| returns the EM parameter learning approximation scheme if EM is enabled | |
| ApproximationSchemeSTATE | EMState () const |
| returns the state of the last EM algorithm executed | |
| std::string | EMStateMessage () const |
| returns the state of the EM algorithm | |
| bool | hasMissingValues () const |
| returns true if the learner's database has missing values | |
Score selection | |
| void | useScoreAIC () |
| indicate that we wish to use an AIC score | |
| void | useScoreBD () |
| indicate that we wish to use a BD score | |
| void | useScoreBDeu () |
| indicate that we wish to use a BDeu score | |
| void | useScoreBIC () |
| indicate that we wish to use a BIC score | |
| void | useScoreK2 () |
| indicate that we wish to use a K2 score | |
| void | useScoreLog2Likelihood () |
| indicate that we wish to use a Log2Likelihood score | |
a prior selection / parameterization | |
| void | useNoPrior () |
| use no prior | |
| void | useBDeuPrior (double weight=1.0) |
| use the BDeu prior | |
| void | useSmoothingPrior (double weight=1) |
| use the prior smoothing | |
| void | useDirichletPrior (const std::string &filename, double weight=1) |
| use the Dirichlet prior from a database | |
| std::string | checkScorePriorCompatibility () const |
| checks whether the current score and prior are compatible | |
Learning algorithm selection | |
| void | useGreedyHillClimbing () |
| indicate that we wish to use a greedy hill climbing algorithm | |
| void | useLocalSearchWithTabuList (Size tabu_size=100, Size nb_decrease=2) |
| indicate that we wish to use a local search with tabu list | |
| void | useK2 (const Sequence< NodeId > &order) |
| indicate that we wish to use K2 | |
| void | useK2 (const std::vector< NodeId > &order) |
| indicate that we wish to use K2 | |
| void | useMIIC () |
| indicate that we wish to use MIIC | |
| bool | isConstraintBased () const |
| indicate if the selected algorithm is constraint-based | |
| bool | isScoreBased () const |
| indicate if the selected algorithm is score-based | |
MIIC parameterization and specific results | |
| void | useNMLCorrection () |
| indicate that we wish to use the NML correction for and MIIC | |
| void | useMDLCorrection () |
| indicate that we wish to use the MDL correction for MIIC | |
| void | useNoCorrection () |
| indicate that we wish to use the NoCorr correction for MIIC | |
| std::vector< Arc > | latentVariables () const |
| get the list of arcs hiding latent variables | |
Accessors / Modifiers for adding constraints on learning | |
| void | setMaxIndegree (Size max_indegree) |
| sets the max indegree | |
| void | setSliceOrder (const NodeProperty< NodeId > &slice_order) |
| sets a partial order on the nodes | |
| void | setSliceOrder (const std::vector< std::vector< std::string > > &slices) |
| sets a partial order on the nodes | |
| void | setForbiddenArcs (const ArcSet &set) |
| assign a set of forbidden arcs | |
assign a new forbidden arc | |
| void | addForbiddenArc (const Arc &arc) |
| void | addForbiddenArc (NodeId tail, NodeId head) |
| void | addForbiddenArc (const std::string &tail, const std::string &head) |
remove a forbidden arc | |
| void | eraseForbiddenArc (const Arc &arc) |
| void | eraseForbiddenArc (NodeId tail, NodeId head) |
| void | eraseForbiddenArc (const std::string &tail, const std::string &head) |
assign a new mandatory arc | |
| void | addMandatoryArc (const Arc &arc) |
| void | addMandatoryArc (NodeId tail, NodeId head) |
| void | addMandatoryArc (const std::string &tail, const std::string &head) |
remove a mandatory arc | |
| void | eraseMandatoryArc (const Arc &arc) |
| void | eraseMandatoryArc (NodeId tail, NodeId head) |
| void | eraseMandatoryArc (const std::string &tail, const std::string &head) |
add a node with no parent | |
| void | addNoParentNode (NodeId node) |
| void | addNoParentNode (const std::string &node) |
remove a node with no parent | |
| void | eraseNoParentNode (NodeId node) |
| void | eraseNoParentNode (const std::string &node) |
add a node with no children | |
| void | addNoChildrenNode (NodeId node) |
| void | addNoChildrenNode (const std::string &node) |
remove a node with no children | |
| void | eraseNoChildrenNode (NodeId node) |
| void | eraseNoChildrenNode (const std::string &node) |
| void | setPossibleEdges (const EdgeSet &set) |
| assign a set of possible edges | |
| void | setPossibleSkeleton (const UndiGraph &skeleton) |
| assign a set of possible edges | |
assign a new possible edge | |
| |
| void | addPossibleEdge (const Edge &edge) |
| void | addPossibleEdge (NodeId tail, NodeId head) |
| void | addPossibleEdge (const std::string &tail, const std::string &head) |
remove a possible edge | |
| void | erasePossibleEdge (const Edge &edge) |
| void | erasePossibleEdge (NodeId tail, NodeId head) |
| void | erasePossibleEdge (const std::string &tail, const std::string &head) |
Multithreading | |
| void | setNumberOfThreads (Size nb) override |
| sets the number max of threads that can be used | |
redistribute signals AND implementation of interface | |
| INLINE void | setCurrentApproximationScheme (const ApproximationScheme *approximationScheme) |
| {@ /// distribute signals | |
| INLINE void | distributeProgress (const ApproximationScheme *approximationScheme, Size pourcent, double error, double time) |
| {@ /// distribute signals | |
| INLINE void | distributeStop (const ApproximationScheme *approximationScheme, const std::string &message) |
| distribute signals | |
| void | setEpsilon (double eps) override |
| Given that we approximate f(t), stopping criterion on |f(t+1)-f(t)| If the criterion was disabled it will be enabled. | |
| double | epsilon () const override |
| Get the value of epsilon. | |
| void | disableEpsilon () override |
| Disable stopping criterion on epsilon. | |
| void | enableEpsilon () override |
| Enable stopping criterion on epsilon. | |
| bool | isEnabledEpsilon () const override |
| void | setMinEpsilonRate (double rate) override |
| Given that we approximate f(t), stopping criterion on d/dt(|f(t+1)-f(t)|) If the criterion was disabled it will be enabled. | |
| double | minEpsilonRate () const override |
| Get the value of the minimal epsilon rate. | |
| void | disableMinEpsilonRate () override |
| Disable stopping criterion on epsilon rate. | |
| void | enableMinEpsilonRate () override |
| Enable stopping criterion on epsilon rate. | |
| bool | isEnabledMinEpsilonRate () const override |
| void | setMaxIter (Size max) override |
| stopping criterion on number of iterationsIf the criterion was disabled it will be enabled | |
| Size | maxIter () const override |
| void | disableMaxIter () override |
| Disable stopping criterion on max iterations. | |
| void | enableMaxIter () override |
| Enable stopping criterion on max iterations. | |
| bool | isEnabledMaxIter () const override |
| void | setMaxTime (double timeout) override |
| stopping criterion on timeout If the criterion was disabled it will be enabled | |
| double | maxTime () const override |
| returns the timeout (in seconds) | |
| double | currentTime () const override |
| get the current running time in second (double) | |
| void | disableMaxTime () override |
| Disable stopping criterion on timeout. | |
| void | enableMaxTime () override |
| stopping criterion on timeout If the criterion was disabled it will be enabled | |
| bool | isEnabledMaxTime () const override |
| void | setPeriodSize (Size p) override |
| how many samples between 2 stopping isEnableds | |
| Size | periodSize () const override |
| how many samples between 2 stopping isEnableds | |
| void | setVerbosity (bool v) override |
| verbosity | |
| bool | verbosity () const override |
| verbosity | |
| ApproximationSchemeSTATE | stateApproximationScheme () const override |
| history | |
| Size | nbrIterations () const override |
| const std::vector< double > & | history () const override |
EM approximation scheme for parameter learning | |
| void | EMsetEpsilon (double eps) |
| sets the stopping criterion of EM as being the minimal difference between two consecutive log-likelihoods | |
| double | EMEpsilon () const |
| Get the value of EM's min diff epsilon. | |
| void | EMdisableEpsilon () |
| Disable the min log-likelihood diff stopping criterion for EM. | |
| void | EMenableEpsilon () |
| Enable the log-likelihood min diff stopping criterion in EM. | |
| bool | EMisEnabledEpsilon () const |
| return true if EM's stopping criterion is the log-likelihood min diff | |
| void | EMsetMinEpsilonRate (double rate) |
| sets the stopping criterion of EM as being the minimal log-likelihood's evolution rate | |
| double | EMMinEpsilonRate () const |
| Get the value of the minimal log-likelihood evolution rate of EM. | |
| void | EMdisableMinEpsilonRate () |
| Disable the log-likelihood evolution rate stopping criterion. | |
| void | EMenableMinEpsilonRate () |
| Enable the log-likelihood evolution rate stopping criterion. | |
| bool | EMisEnabledMinEpsilonRate () const |
| void | EMsetMaxIter (Size max) |
| add a max iteration stopping criterion | |
| Size | EMMaxIter () const |
| return the max number of iterations criterion | |
| void | EMdisableMaxIter () |
| Disable stopping criterion on max iterations. | |
| void | EMenableMaxIter () |
| Enable stopping criterion on max iterations. | |
| bool | EMisEnabledMaxIter () const |
| void | EMsetMaxTime (double timeout) |
| add a stopping criterion on timeout | |
| double | EMMaxTime () const |
| @brief returns EM's timeout (in milliseconds) | |
| double | EMCurrentTime () const |
| get the current running time in second (double) | |
| void | EMdisableMaxTime () |
| Disable EM's timeout stopping criterion. | |
| void | EMenableMaxTime () |
| sets the stopping criterion of EM as being the minimal difference between two consecutive log-likelihoods | |
| bool | EMisEnabledMaxTime () const |
| void | EMsetPeriodSize (Size p) |
| how many samples between 2 stoppings isEnabled | |
| Size | EMPeriodSize () const |
| sets the stopping criterion of EM as being the minimal difference between two consecutive log-likelihoods | |
| void | EMsetVerbosity (bool v) |
| sets or unsets EM's verbosity | |
| bool | EMVerbosity () const |
| returns the EM's verbosity status | |
| ApproximationSchemeSTATE | EMStateApproximationScheme () const |
| get the current state of EM | |
| Size | EMnbrIterations () const |
| returns the number of iterations performed by the last EM execution | |
| const std::vector< double > & | EMHistory () const |
| returns the history of the last EM execution | |
Getters and setters | |
| std::string | messageApproximationScheme () const |
| Returns the approximation scheme message. | |
Accessors/Modifiers | |
| virtual Size | getNumberOfThreads () const |
| returns the current max number of threads used by the class containing this ThreadNumberManager | |
| bool | isGumNumberOfThreadsOverriden () const |
| indicates whether the class containing this ThreadNumberManager set its own number of threads | |
Public Attributes | |
| Signaler3< Size, double, double > | onProgress |
| Progression, error and time. | |
| Signaler1< const std::string & > | onStop |
| Criteria messageApproximationScheme. | |
Static Public Attributes | |
| static constexpr double | default_EM_noise {0.1} |
| the default noise amount added to CPTs during EM's initialization (see method useEM()) | |
Protected Member Functions | |
| void | _setPriorWeight_ (double weight) |
| sets the prior weight | |
| virtual void | createPrior_ ()=0 |
| create the prior used for learning | |
| void | createScore_ () |
| create the score used for learning | |
| ParamEstimator * | createParamEstimator_ (const DBRowGeneratorParser &parser, bool take_into_account_score=true) |
| create the parameter estimator used for learning | |
| DAG | learnDag_ () |
| returns the DAG learnt | |
| MixedGraph | prepareSimpleMiic_ () |
| prepares the initial graph for Simple Miic | |
| MixedGraph | prepareMiic_ () |
| prepares the initial graph for miic | |
| PriorType | getPriorType_ () const |
| returns the type (as a string) of a given prior | |
| void | createCorrectedMutualInformation_ () |
| create the Corrected Mutual Information instance for Miic | |
Static Protected Member Functions | |
| static DatabaseTable | readFile_ (const std::string &filename, const std::vector< std::string > &missing_symbols) |
| reads a file and returns a databaseVectInRam | |
| static void | isCSVFileName_ (const std::string &filename) |
| checks whether the extension of a CSV filename is correct | |
Protected Attributes | |
| bool | inducedTypes_ {false} |
| the policy for typing variables | |
| ScoreType | scoreType_ {ScoreType::BDeu} |
| the score selected for learning | |
| Score * | score_ {nullptr} |
| the score used | |
| ParamEstimatorType | paramEstimatorType_ {ParamEstimatorType::ML} |
| the type of the parameter estimator | |
| bool | useEM_ {false} |
| a Boolean indicating whether we should use EM for parameter learning or not | |
| double | noiseEM_ {0.1} |
| the noise factor (in (0,1)) used by EM for perturbing the CPT during init | |
| CorrectedMutualInformation * | mutualInfo_ {nullptr} |
| the selected correction for miic | |
| BNLearnerPriorType | priorType_ {BNLearnerPriorType::NO_prior} |
| the a priorselected for the score and parameters | |
| Prior * | prior_ {nullptr} |
| the prior used | |
| NoPrior * | noPrior_ {nullptr} |
| double | priorWeight_ {1.0f} |
| the weight of the prior | |
| StructuralConstraintSliceOrder | constraintSliceOrder_ |
| the constraint for 2TBNs | |
| StructuralConstraintIndegree | constraintIndegree_ |
| the constraint for indegrees | |
| StructuralConstraintTabuList | constraintTabuList_ |
| the constraint for tabu lists | |
| StructuralConstraintForbiddenArcs | constraintForbiddenArcs_ |
| the constraint on forbidden arcs | |
| StructuralConstraintPossibleEdges | constraintPossibleEdges_ |
| the constraint on possible Edges | |
| StructuralConstraintMandatoryArcs | constraintMandatoryArcs_ |
| the constraint on mandatory arcs | |
| StructuralConstraintNoParentNodes | constraintNoParentNodes_ |
| the constraint on no parent nodes | |
| StructuralConstraintNoChildrenNodes | constraintNoChildrenNodes_ |
| the constraint on no children nodes | |
| AlgoType | selectedAlgo_ {AlgoType::MIIC} |
| the selected learning algorithm | |
| K2 | algoK2_ |
| the K2 algorithm | |
| SimpleMiic | algoSimpleMiic_ |
| the MIIC algorithm | |
| Miic | algoMiic_ |
| the Constraint MIIC algorithm | |
| CorrectedMutualInformation::KModeTypes | kmodeMiic_ |
| the penalty used in MIIC | |
| DAG2BNLearner | dag2BN_ |
| the parametric EM | |
| GreedyHillClimbing | greedyHillClimbing_ |
| the greedy hill climbing algorithm | |
| LocalSearchWithTabuList | localSearchWithTabuList_ |
| the local search with tabu list algorithm | |
| Database | scoreDatabase_ |
| the database to be used by the scores and parameter estimators | |
| std::vector< std::pair< std::size_t, std::size_t > > | ranges_ |
| the set of rows' ranges within the database in which learning is done | |
| Database * | priorDatabase_ {nullptr} |
| the database used by the Dirichlet a priori | |
| std::string | priorDbname_ |
| the filename for the Dirichlet a priori, if any | |
| DAG | initialDag_ |
| an initial DAG given to learners | |
| std::string | filename_ {"-"} |
| the filename database | |
| Size | nbDecreasingChanges_ {2} |
| const ApproximationScheme * | currentAlgorithm_ {nullptr} |
Private Attributes | |
| Size | _nb_threads_ {0} |
| the max number of threads used by the class | |
A pack of learning algorithms that can easily be used.
The pack currently contains K2, GreedyHillClimbing and LocalSearchWithTabuList also miic
Definition at line 98 of file IBNLearner.h.
|
strong |
an enumeration to select easily the learning algorithm to use
| Enumerator | |
|---|---|
| K2 | |
| GREEDY_HILL_CLIMBING | |
| LOCAL_SEARCH_WITH_TABU_LIST | |
| MIIC | |
Definition at line 117 of file IBNLearner.h.
|
stronginherited |
The different state of an approximation scheme.
| Enumerator | |
|---|---|
| Undefined | |
| Continue | |
| Epsilon | |
| Rate | |
| Limit | |
| TimeLimit | |
| Stopped | |
Definition at line 86 of file IApproximationSchemeConfiguration.h.
|
strong |
an enumeration to select the prior
| Enumerator | |
|---|---|
| NO_prior | |
| SMOOTHING | |
| DIRICHLET_FROM_DATABASE | |
| DIRICHLET_FROM_BAYESNET | |
| BDEU | |
Definition at line 108 of file IBNLearner.h.
|
strong |
an enumeration to select the type of parameter estimation we shall apply
| Enumerator | |
|---|---|
| ML | |
Definition at line 105 of file IBNLearner.h.
|
strong |
an enumeration enabling to select easily the score we wish to use
| Enumerator | |
|---|---|
| AIC | |
| BD | |
| BDeu | |
| BIC | |
| K2 | |
| LOG2LIKELIHOOD | |
Definition at line 101 of file IBNLearner.h.
| gum::learning::IBNLearner::IBNLearner | ( | const std::string & | filename, |
| const std::vector< std::string > & | missingSymbols, | ||
| bool | induceTypes = true ) |
read the database file for the score / parameter estimation and var names
| filename | the name of a CSV file containing the dataset |
| missing_symbols | the set of symbols in the CSV that should be interpreted as missing values |
| induceTypes | when some columns of the dataset have only numerical values, it is certainly be better to tag them as corresponding to integer, range or continuous variables. By setting induceTypes to true (default), this is precisely what the BNLearner will do. If inducedTypes is false, all the values in the dataset are interpreted as "labels", i.e., as categorical values. |
Definition at line 201 of file IBNLearner.cpp.
References IBNLearner(), filename_, inducedTypes_, noPrior_, and scoreDatabase_.
Referenced by gum::learning::IBNLearner::Database::Database(), IBNLearner(), IBNLearner(), IBNLearner(), IBNLearner(), IBNLearner(), ~IBNLearner(), operator=(), and operator=().
|
explicit |
read the database file for the score / parameter estimation and var names
| filename | the name of a CSV file containing the dataset |
| missing_symbols | the set of symbols in the CSV that should be interpreted as missing values |
| induceTypes | when some columns of the dataset have only numerical values, it is certainly be better to tag them as corresponding to integer, range or continuous variables. By setting induceTypes to true (default), this is precisely what the BNLearner will do. If inducedTypes is false, all the values in the dataset are interpreted as "labels", i.e., as categorical values. |
Definition at line 211 of file IBNLearner.cpp.
References IBNLearner(), noPrior_, and scoreDatabase_.
| gum::learning::IBNLearner::IBNLearner | ( | const std::string & | filename, |
| const gum::BayesNet< GUM_SCALAR > & | src, | ||
| const std::vector< std::string > & | missing_symbols ) |
read the database file for the score / parameter estimation and var names
| filename | The file to learn from. |
| src | indicate for some nodes (not necessarily all the nodes of the BN) which modalities they should have and in which order these modalities should be stored into the nodes. For instance, if modalities = { 1 -> {True, False, Big} }, then the node of id 1 in the BN will have 3 modalities, the first one being True, the second one being False, and the third bein Big. The modalities specified by the user will be considered as being exactly those of the variables of the BN (as a consequence, if we find other values in the database, an exception will be raised during learning). |
| missing_symbols | the set of symbols in the CSV that should be interpreted as missing values |
Definition at line 102 of file IBNLearner_tpl.h.
References IBNLearner(), filename_, inducedTypes_, noPrior_, and scoreDatabase_.
| gum::learning::IBNLearner::IBNLearner | ( | const IBNLearner & | from | ) |
copy constructor
Definition at line 216 of file IBNLearner.cpp.
References gum::IApproximationSchemeConfiguration::IApproximationSchemeConfiguration(), IBNLearner(), gum::ThreadNumberManager::ThreadNumberManager(), algoK2_, algoMiic_, algoSimpleMiic_, constraintForbiddenArcs_, constraintIndegree_, constraintMandatoryArcs_, constraintNoChildrenNodes_, constraintNoParentNodes_, constraintSliceOrder_, constraintTabuList_, dag2BN_, filename_, greedyHillClimbing_, inducedTypes_, initialDag_, kmodeMiic_, localSearchWithTabuList_, nbDecreasingChanges_, noiseEM_, noPrior_, paramEstimatorType_, priorDbname_, priorType_, priorWeight_, ranges_, scoreDatabase_, scoreType_, selectedAlgo_, and useEM_.
| gum::learning::IBNLearner::IBNLearner | ( | IBNLearner && | from | ) |
move constructor
Definition at line 238 of file IBNLearner.cpp.
References IBNLearner(), gum::ThreadNumberManager::ThreadNumberManager(), algoK2_, algoMiic_, algoSimpleMiic_, constraintForbiddenArcs_, constraintIndegree_, constraintMandatoryArcs_, constraintNoChildrenNodes_, constraintNoParentNodes_, constraintSliceOrder_, constraintTabuList_, dag2BN_, filename_, greedyHillClimbing_, inducedTypes_, initialDag_, kmodeMiic_, localSearchWithTabuList_, nbDecreasingChanges_, noiseEM_, noPrior_, paramEstimatorType_, priorDbname_, priorType_, priorWeight_, ranges_, scoreDatabase_, scoreType_, selectedAlgo_, and useEM_.
|
virtual |
destructor
Definition at line 263 of file IBNLearner.cpp.
References IBNLearner(), mutualInfo_, noPrior_, prior_, priorDatabase_, and score_.
|
protected |
sets the prior weight
Definition at line 473 of file IBNLearner_inl.h.
References checkScorePriorCompatibility(), GUM_ERROR, and priorWeight_.
Referenced by useBDeuPrior(), gum::learning::BNLearner< GUM_SCALAR >::useDirichletPrior(), useDirichletPrior(), and useSmoothingPrior().
| INLINE void gum::learning::IBNLearner::addForbiddenArc | ( | const Arc & | arc | ) |
Definition at line 365 of file IBNLearner_inl.h.
References constraintForbiddenArcs_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::addForbiddenArc(), gum::learning::BNLearner< GUM_SCALAR >::addForbiddenArc(), gum::learning::BNLearner< GUM_SCALAR >::addForbiddenArc(), addForbiddenArc(), and addForbiddenArc().
| INLINE void gum::learning::IBNLearner::addForbiddenArc | ( | const std::string & | tail, |
| const std::string & | head ) |
Definition at line 383 of file IBNLearner_inl.h.
References addForbiddenArc(), and idFromName().
Definition at line 373 of file IBNLearner_inl.h.
References addForbiddenArc().
| INLINE void gum::learning::IBNLearner::addMandatoryArc | ( | const Arc & | arc | ) |
Definition at line 398 of file IBNLearner_inl.h.
References constraintMandatoryArcs_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::addMandatoryArc(), gum::learning::BNLearner< GUM_SCALAR >::addMandatoryArc(), gum::learning::BNLearner< GUM_SCALAR >::addMandatoryArc(), addMandatoryArc(), and addMandatoryArc().
| INLINE void gum::learning::IBNLearner::addMandatoryArc | ( | const std::string & | tail, |
| const std::string & | head ) |
Definition at line 436 of file IBNLearner_inl.h.
References addMandatoryArc(), and idFromName().
Definition at line 446 of file IBNLearner_inl.h.
References addMandatoryArc().
| INLINE void gum::learning::IBNLearner::addNoChildrenNode | ( | const std::string & | node | ) |
Definition at line 423 of file IBNLearner_inl.h.
References addNoChildrenNode(), and idFromName().
| INLINE void gum::learning::IBNLearner::addNoChildrenNode | ( | NodeId | node | ) |
Definition at line 419 of file IBNLearner_inl.h.
References constraintNoChildrenNodes_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::addNoChildrenNode(), gum::learning::BNLearner< GUM_SCALAR >::addNoChildrenNode(), and addNoChildrenNode().
| INLINE void gum::learning::IBNLearner::addNoParentNode | ( | const std::string & | node | ) |
Definition at line 407 of file IBNLearner_inl.h.
References addNoParentNode(), and idFromName().
| INLINE void gum::learning::IBNLearner::addNoParentNode | ( | NodeId | node | ) |
Definition at line 405 of file IBNLearner_inl.h.
References constraintNoParentNodes_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::addNoParentNode(), gum::learning::BNLearner< GUM_SCALAR >::addNoParentNode(), and addNoParentNode().
| INLINE void gum::learning::IBNLearner::addPossibleEdge | ( | const Edge & | edge | ) |
Definition at line 330 of file IBNLearner_inl.h.
References constraintPossibleEdges_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::addPossibleEdge(), gum::learning::BNLearner< GUM_SCALAR >::addPossibleEdge(), gum::learning::BNLearner< GUM_SCALAR >::addPossibleEdge(), addPossibleEdge(), and addPossibleEdge().
| INLINE void gum::learning::IBNLearner::addPossibleEdge | ( | const std::string & | tail, |
| const std::string & | head ) |
Definition at line 350 of file IBNLearner_inl.h.
References addPossibleEdge(), and idFromName().
Definition at line 340 of file IBNLearner_inl.h.
References addPossibleEdge().
| std::string gum::learning::IBNLearner::checkScorePriorCompatibility | ( | ) | const |
checks whether the current score and prior are compatible
Definition at line 899 of file IBNLearner.cpp.
References AIC, BD, BDeu, BIC, getPriorType_(), isConstraintBased(), gum::learning::ScoreAIC::isPriorCompatible(), gum::learning::ScoreBD::isPriorCompatible(), gum::learning::ScoreBDeu::isPriorCompatible(), gum::learning::ScoreBIC::isPriorCompatible(), gum::learning::ScoreK2::isPriorCompatible(), gum::learning::ScoreLog2Likelihood::isPriorCompatible(), LOG2LIKELIHOOD, priorWeight_, and scoreType_.
Referenced by _setPriorWeight_(), useBDeuPrior(), gum::learning::BNLearner< GUM_SCALAR >::useDirichletPrior(), useDirichletPrior(), useNoPrior(), useScoreAIC(), useScoreBD(), useScoreBDeu(), useScoreBIC(), useScoreK2(), useScoreLog2Likelihood(), and useSmoothingPrior().
| std::pair< double, double > gum::learning::IBNLearner::chi2 | ( | const std::string & | name1, |
| const std::string & | name2, | ||
| const std::vector< std::string > & | knowing = {} ) |
Return the <statistic,pvalue> pair for the BNLearner.
| id1 | first variable |
| id2 | second variable |
| knowing | list of observed variables |
Definition at line 970 of file IBNLearner.cpp.
References chi2(), and idFromName().
| std::pair< double, double > gum::learning::IBNLearner::chi2 | ( | NodeId | id1, |
| NodeId | id2, | ||
| const std::vector< NodeId > & | knowing = {} ) |
Return the <statistic,pvalue> pair for chi2 test in the database.
| id1 | first variable |
| id2 | second variable |
| knowing | list of observed variables |
Definition at line 963 of file IBNLearner.cpp.
References createPrior_(), databaseRanges(), prior_, scoreDatabase_, and gum::learning::IndepTestChi2::statistics().
Referenced by chi2().
| INLINE void gum::learning::IBNLearner::clearDatabaseRanges | ( | ) |
reset the ranges to the one range corresponding to the whole database
Definition at line 558 of file IBNLearner_inl.h.
References ranges_.
| double gum::learning::IBNLearner::correctedMutualInformation | ( | const std::string & | var1, |
| const std::string & | var2, | ||
| const std::vector< std::string > & | knowing = {} ) |
Return the mutual information of var1 and var2 in the base, conditioned by knowing for the BNLearner.
| var1 | name of a row |
| var2 | name of a row |
| knowing | an optional vector of conditioning rows |
Definition at line 1053 of file IBNLearner.cpp.
References correctedMutualInformation(), and idFromName().
| double gum::learning::IBNLearner::correctedMutualInformation | ( | NodeId | id1, |
| NodeId | id2, | ||
| const std::vector< NodeId > & | knowing = {} ) |
Return the mutual information of id1 and id2 in the base, conditioned by knowing for the BNLearner.
| id1 | nodeId |
| id2 | nodeId |
| knowing | an optional vector of conditioning NodeIds |
Definition at line 1028 of file IBNLearner.cpp.
References createPrior_(), databaseRanges(), GUM_ERROR, kmodeMiic_, prior_, gum::learning::CorrectedMutualInformation::score(), scoreDatabase_, gum::learning::CorrectedMutualInformation::useMDL(), gum::learning::CorrectedMutualInformation::useNML(), and gum::learning::CorrectedMutualInformation::useNoCorr().
Referenced by correctedMutualInformation().
|
protected |
create the Corrected Mutual Information instance for Miic
Definition at line 710 of file IBNLearner.cpp.
References GUM_ERROR, kmodeMiic_, mutualInfo_, noPrior_, ranges_, and scoreDatabase_.
Referenced by prepareMiic_().
|
protected |
create the parameter estimator used for learning
Definition at line 527 of file IBNLearner.cpp.
References gum::ThreadNumberManager::getNumberOfThreads(), GUM_ERROR, gum::ThreadNumberManager::isGumNumberOfThreadsOverriden(), ML, noPrior_, paramEstimatorType_, prior_, ranges_, score_, scoreDatabase_, gum::learning::ParamEstimator::setNumberOfThreads(), and gum::learning::ParamEstimator::setRanges().
|
protectedpure virtual |
create the prior used for learning
Implemented in gum::learning::BNLearner< GUM_SCALAR >.
Referenced by chi2(), correctedMutualInformation(), G2(), learnDAG(), logLikelihood(), rawPseudoCount(), and score().
|
protected |
create the score used for learning
Definition at line 468 of file IBNLearner.cpp.
References AIC, BD, BDeu, BIC, gum::ThreadNumberManager::getNumberOfThreads(), GUM_ERROR, gum::ThreadNumberManager::isGumNumberOfThreadsOverriden(), K2, LOG2LIKELIHOOD, prior_, ranges_, score_, scoreDatabase_, and scoreType_.
Referenced by learnDAG(), and score().
|
inlineoverridevirtual |
get the current running time in second (double)
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1243 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
| INLINE const DatabaseTable & gum::learning::IBNLearner::database | ( | ) | const |
returns the database used by the BNLearner
Definition at line 561 of file IBNLearner_inl.h.
References scoreDatabase_.
Referenced by readFile_().
| INLINE const std::vector< std::pair< std::size_t, std::size_t > > & gum::learning::IBNLearner::databaseRanges | ( | ) | const |
returns the current database rows' ranges used for learning
Definition at line 553 of file IBNLearner_inl.h.
References ranges_.
Referenced by chi2(), correctedMutualInformation(), G2(), logLikelihood(), mutualInformation(), and rawPseudoCount().
| INLINE double gum::learning::IBNLearner::databaseWeight | ( | ) | const |
returns the weight of the whole database
Definition at line 160 of file IBNLearner_inl.h.
References scoreDatabase_.
|
inlineoverridevirtual |
Disable stopping criterion on epsilon.
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1122 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
Disable stopping criterion on max iterations.
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1202 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
Disable stopping criterion on timeout.
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1249 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
Disable stopping criterion on epsilon rate.
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1162 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inline |
{@ /// distribute signals
Definition at line 1086 of file IBNLearner.h.
References GUM_EMIT3, gum::IApproximationSchemeConfiguration::onProgress, and setCurrentApproximationScheme().
|
inline |
distribute signals
Definition at line 1096 of file IBNLearner.h.
References GUM_EMIT1, gum::IApproximationSchemeConfiguration::onStop, and setCurrentApproximationScheme().
| INLINE Size gum::learning::IBNLearner::domainSize | ( | const std::string & | var | ) | const |
learn a structure from a file (must have read the db before)
Definition at line 547 of file IBNLearner_inl.h.
References idFromName(), and scoreDatabase_.
learn a structure from a file (must have read the db before)
Definition at line 544 of file IBNLearner_inl.h.
References scoreDatabase_.
| INLINE const std::vector< std::size_t > & gum::learning::IBNLearner::domainSizes | ( | ) | const |
returns the domain sizes of the variables in the database
Definition at line 539 of file IBNLearner_inl.h.
References scoreDatabase_.
| INLINE EMApproximationScheme & gum::learning::IBNLearner::EM | ( | ) |
returns the EM parameter learning approximation scheme if EM is enabled
returns the EM parameter learning approximation scheme
| NotFound | is raised if EM() is called while the EM algorithm has not been enabled by useEM(), useEMWithDiffCriterion() or useEMWithRateCriterion(). |
Definition at line 298 of file IBNLearner_inl.h.
|
inline |
get the current running time in second (double)
Definition at line 1422 of file IBNLearner.h.
References dag2BN_.
|
inline |
Disable the min log-likelihood diff stopping criterion for EM.
Definition at line 1345 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMdisableEpsilon().
|
inline |
Disable stopping criterion on max iterations.
Definition at line 1398 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMdisableMaxIter().
|
inline |
Disable EM's timeout stopping criterion.
Definition at line 1425 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMdisableMaxTime().
|
inline |
Disable the log-likelihood evolution rate stopping criterion.
Definition at line 1372 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMdisableMinEpsilonRate().
|
inline |
Enable the log-likelihood min diff stopping criterion in EM.
Definition at line 1351 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMenableEpsilon().
|
inline |
Enable stopping criterion on max iterations.
Definition at line 1401 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMenableMaxIter().
|
inline |
sets the stopping criterion of EM as being the minimal difference between two consecutive log-likelihoods
| eps | the log-likelihood difference below which EM stops its iterations |
| OutOfBounds | if eps <= 0 |
Definition at line 1427 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMenableMaxTime().
|
inline |
Enable the log-likelihood evolution rate stopping criterion.
Definition at line 1378 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMenableMinEpsilonRate().
|
inline |
Get the value of EM's min diff epsilon.
Get the value of EM's min diff epsilon
Definition at line 1342 of file IBNLearner.h.
References dag2BN_.
|
inline |
returns the history of the last EM execution
Definition at line 1458 of file IBNLearner.h.
References dag2BN_.
|
inline |
return true if EM's stopping criterion is the log-likelihood min diff
Definition at line 1354 of file IBNLearner.h.
References dag2BN_.
|
inline |
Definition at line 1405 of file IBNLearner.h.
References dag2BN_.
|
inline |
Definition at line 1430 of file IBNLearner.h.
References dag2BN_.
|
inline |
Definition at line 1381 of file IBNLearner.h.
References dag2BN_.
|
inline |
return the max number of iterations criterion
Definition at line 1395 of file IBNLearner.h.
References dag2BN_.
|
inline |
@brief returns EM's timeout (in milliseconds)
Definition at line 1419 of file IBNLearner.h.
References dag2BN_.
|
inline |
Get the value of the minimal log-likelihood evolution rate of EM.
Definition at line 1369 of file IBNLearner.h.
References dag2BN_.
|
inline |
returns the number of iterations performed by the last EM execution
Definition at line 1452 of file IBNLearner.h.
References dag2BN_.
|
inline |
sets the stopping criterion of EM as being the minimal difference between two consecutive log-likelihoods
| eps | the log-likelihood difference below which EM stops its iterations |
| OutOfBounds | if eps <= 0 |
Definition at line 1438 of file IBNLearner.h.
References dag2BN_.
|
inline |
sets the stopping criterion of EM as being the minimal difference between two consecutive log-likelihoods
| eps | the log-likelihood difference below which EM stops its iterations |
| OutOfBounds | if eps <= 0 |
Definition at line 1334 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMsetEpsilon().
|
inline |
add a max iteration stopping criterion
| max | the max number of iterations that EM is allowed to perform |
| OutOfBounds | if max<=1 |
Definition at line 1388 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMsetMaxIter().
|
inline |
add a stopping criterion on timeout
| timeout | the timeout in milliseconds |
| OutOfBounds | if timeout<=0.0 |
Definition at line 1412 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMsetMaxTime().
|
inline |
sets the stopping criterion of EM as being the minimal log-likelihood's evolution rate
| rate | the log-likelihood evolution rate below which EM stops its iterations |
| OutOfBounds | if rate<=0 |
Definition at line 1362 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMsetMinEpsilonRate().
|
inline |
how many samples between 2 stoppings isEnabled
| OutOfBounds | if p<1 |
Definition at line 1436 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMsetPeriodSize().
|
inline |
sets or unsets EM's verbosity
Definition at line 1441 of file IBNLearner.h.
References dag2BN_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::EMsetVerbosity().
| INLINE IApproximationSchemeConfiguration::ApproximationSchemeSTATE gum::learning::IBNLearner::EMState | ( | ) | const |
returns the state of the last EM algorithm executed
Definition at line 304 of file IBNLearner_inl.h.
References dag2BN_, gum::IApproximationSchemeConfiguration::Undefined, and useEM_.
|
inline |
| INLINE std::string gum::learning::IBNLearner::EMStateMessage | ( | ) | const |
|
inline |
|
inlineoverridevirtual |
Enable stopping criterion on epsilon.
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1129 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
Enable stopping criterion on max iterations.
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1209 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
stopping criterion on timeout If the criterion was disabled it will be enabled
| OutOfBounds | if timeout<=0.0 timeout is time in second (double). |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1255 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
Enable stopping criterion on epsilon rate.
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1169 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
Get the value of epsilon.
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1116 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useEM(), useEM(), gum::learning::BNLearner< GUM_SCALAR >::useEMWithDiffCriterion(), useEMWithDiffCriterion(), gum::learning::BNLearner< GUM_SCALAR >::useEMWithRateCriterion(), and useEMWithRateCriterion().
| INLINE void gum::learning::IBNLearner::eraseForbiddenArc | ( | const Arc & | arc | ) |
Definition at line 368 of file IBNLearner_inl.h.
References constraintForbiddenArcs_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::eraseForbiddenArc(), gum::learning::BNLearner< GUM_SCALAR >::eraseForbiddenArc(), gum::learning::BNLearner< GUM_SCALAR >::eraseForbiddenArc(), eraseForbiddenArc(), and eraseForbiddenArc().
| INLINE void gum::learning::IBNLearner::eraseForbiddenArc | ( | const std::string & | tail, |
| const std::string & | head ) |
Definition at line 388 of file IBNLearner_inl.h.
References eraseForbiddenArc(), and idFromName().
Definition at line 378 of file IBNLearner_inl.h.
References eraseForbiddenArc().
| INLINE void gum::learning::IBNLearner::eraseMandatoryArc | ( | const Arc & | arc | ) |
Definition at line 401 of file IBNLearner_inl.h.
References constraintMandatoryArcs_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::eraseMandatoryArc(), gum::learning::BNLearner< GUM_SCALAR >::eraseMandatoryArc(), gum::learning::BNLearner< GUM_SCALAR >::eraseMandatoryArc(), eraseMandatoryArc(), and eraseMandatoryArc().
| INLINE void gum::learning::IBNLearner::eraseMandatoryArc | ( | const std::string & | tail, |
| const std::string & | head ) |
Definition at line 441 of file IBNLearner_inl.h.
References eraseMandatoryArc(), and idFromName().
Definition at line 451 of file IBNLearner_inl.h.
References eraseMandatoryArc().
| INLINE void gum::learning::IBNLearner::eraseNoChildrenNode | ( | const std::string & | node | ) |
Definition at line 431 of file IBNLearner_inl.h.
References eraseNoChildrenNode(), and idFromName().
| INLINE void gum::learning::IBNLearner::eraseNoChildrenNode | ( | NodeId | node | ) |
Definition at line 427 of file IBNLearner_inl.h.
References constraintNoChildrenNodes_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::eraseNoChildrenNode(), gum::learning::BNLearner< GUM_SCALAR >::eraseNoChildrenNode(), and eraseNoChildrenNode().
| INLINE void gum::learning::IBNLearner::eraseNoParentNode | ( | const std::string & | node | ) |
Definition at line 415 of file IBNLearner_inl.h.
References eraseNoParentNode(), and idFromName().
| INLINE void gum::learning::IBNLearner::eraseNoParentNode | ( | NodeId | node | ) |
Definition at line 411 of file IBNLearner_inl.h.
References constraintNoParentNodes_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::eraseNoParentNode(), gum::learning::BNLearner< GUM_SCALAR >::eraseNoParentNode(), and eraseNoParentNode().
| INLINE void gum::learning::IBNLearner::erasePossibleEdge | ( | const Edge & | edge | ) |
Definition at line 335 of file IBNLearner_inl.h.
References constraintPossibleEdges_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::erasePossibleEdge(), gum::learning::BNLearner< GUM_SCALAR >::erasePossibleEdge(), gum::learning::BNLearner< GUM_SCALAR >::erasePossibleEdge(), erasePossibleEdge(), and erasePossibleEdge().
| INLINE void gum::learning::IBNLearner::erasePossibleEdge | ( | const std::string & | tail, |
| const std::string & | head ) |
Definition at line 355 of file IBNLearner_inl.h.
References erasePossibleEdge(), and idFromName().
Definition at line 345 of file IBNLearner_inl.h.
References erasePossibleEdge().
| INLINE void gum::learning::IBNLearner::forbidEM | ( | ) |
prevent using the EM algorithm for parameter learning
forbid to use EM
Definition at line 292 of file IBNLearner_inl.h.
References useEM_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::forbidEM().
| std::pair< double, double > gum::learning::IBNLearner::G2 | ( | const std::string & | name1, |
| const std::string & | name2, | ||
| const std::vector< std::string > & | knowing = {} ) |
Return the <statistic,pvalue> pair for for G2 test in the database.
| id1 | first variable |
| id2 | second variable |
| knowing | list of observed variables |
Definition at line 988 of file IBNLearner.cpp.
References G2(), and idFromName().
| std::pair< double, double > gum::learning::IBNLearner::G2 | ( | NodeId | id1, |
| NodeId | id2, | ||
| const std::vector< NodeId > & | knowing = {} ) |
Return the <statistic,pvalue> pair for for G2 test in the database.
| id1 | first variable |
| id2 | second variable |
| knowing | list of observed variables |
Definition at line 982 of file IBNLearner.cpp.
References createPrior_(), databaseRanges(), prior_, scoreDatabase_, and gum::learning::IndepTestG2::statistics().
Referenced by G2().
|
virtualinherited |
returns the current max number of threads used by the class containing this ThreadNumberManager
Implements gum::IThreadNumberManager.
Referenced by gum::learning::IBNLearner::createParamEstimator_(), gum::learning::IBNLearner::createScore_(), gum::credal::InferenceEngine< GUM_SCALAR >::displatchMarginalsToThreads_(), gum::credal::MultipleInferenceEngine< GUM_SCALAR, BNInferenceEngine >::expFusion_(), gum::ScheduledInference::scheduler(), and gum::credal::MultipleInferenceEngine< GUM_SCALAR, BNInferenceEngine >::verticesFusion_().
|
protected |
returns the type (as a string) of a given prior
Definition at line 518 of file IBNLearner_inl.h.
References BDEU, gum::learning::BDeuPriorType, DIRICHLET_FROM_BAYESNET, DIRICHLET_FROM_DATABASE, gum::learning::DirichletPriorType, GUM_ERROR, NO_prior, gum::learning::NoPriorType, priorType_, SMOOTHING, and gum::learning::SmoothingPriorType.
Referenced by checkScorePriorCompatibility().
| INLINE bool gum::learning::IBNLearner::hasMissingValues | ( | ) | const |
returns true if the learner's database has missing values
Definition at line 315 of file IBNLearner_inl.h.
References scoreDatabase_.
Referenced by rawPseudoCount().
|
inlineoverridevirtual |
| OperationNotAllowed | if scheme not performed or verbosity=false |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1316 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
| INLINE NodeId gum::learning::IBNLearner::idFromName | ( | const std::string & | var_name | ) | const |
returns the node id corresponding to a variable name
| MissingVariableInDatabase | if a variable of the BN is not found in the database. |
Definition at line 135 of file IBNLearner_inl.h.
References scoreDatabase_.
Referenced by addForbiddenArc(), addMandatoryArc(), addNoChildrenNode(), addNoParentNode(), addPossibleEdge(), chi2(), correctedMutualInformation(), domainSize(), eraseForbiddenArc(), eraseMandatoryArc(), eraseNoChildrenNode(), eraseNoParentNode(), erasePossibleEdge(), G2(), logLikelihood(), mutualInformation(), rawPseudoCount(), score(), and setSliceOrder().
| INLINE DAG gum::learning::IBNLearner::initialDAG | ( | ) |
returns the initial DAG structure
Definition at line 165 of file IBNLearner_inl.h.
References initialDag_.
|
inline |
indicate if the selected algorithm is constraint-based
Definition at line 777 of file IBNLearner.h.
References GREEDY_HILL_CLIMBING, K2, LOCAL_SEARCH_WITH_TABU_LIST, MIIC, and selectedAlgo_.
Referenced by checkScorePriorCompatibility(), gum::learning::BNLearner< GUM_SCALAR >::isConstraintBased(), and isScoreBased().
|
staticprotected |
checks whether the extension of a CSV filename is correct
Definition at line 426 of file IBNLearner.cpp.
References GUM_ERROR.
Referenced by gum::learning::IBNLearner::Database::Database(), gum::learning::IBNLearner::Database::Database(), and readFile_().
|
inlineoverridevirtual |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1137 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
|
inlineoverridevirtual |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1217 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
|
inlineoverridevirtual |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1263 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
|
inlineoverridevirtual |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1177 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
|
virtualinherited |
indicates whether the class containing this ThreadNumberManager set its own number of threads
Implements gum::IThreadNumberManager.
Referenced by gum::learning::IBNLearner::createParamEstimator_(), and gum::learning::IBNLearner::createScore_().
|
inline |
indicate if the selected algorithm is score-based
Definition at line 788 of file IBNLearner.h.
References isConstraintBased().
Referenced by gum::learning::BNLearner< GUM_SCALAR >::isScoreBased().
| INLINE bool gum::learning::IBNLearner::isUsingEM | ( | ) | const |
indicates whether we use EM for parameter learning
Definition at line 295 of file IBNLearner_inl.h.
References useEM_.
| INLINE std::vector< Arc > gum::learning::IBNLearner::latentVariables | ( | ) | const |
get the list of arcs hiding latent variables
| OperationNotAllowed | when MIIC is not the selected algorithm |
Definition at line 227 of file IBNLearner_inl.h.
References algoMiic_.
| DAG gum::learning::IBNLearner::learnDAG | ( | ) |
learn a structure from a file (must have read the db before)
Definition at line 702 of file IBNLearner.cpp.
References createPrior_(), createScore_(), and learnDag_().
|
protected |
returns the DAG learnt
Definition at line 729 of file IBNLearner.cpp.
References gum::DAG::addArc(), gum::NodeGraphPart::addNodeWithId(), algoK2_, algoMiic_, constraintForbiddenArcs_, constraintIndegree_, constraintMandatoryArcs_, constraintNoChildrenNodes_, constraintNoParentNodes_, constraintPossibleEdges_, constraintSliceOrder_, constraintTabuList_, DIRICHLET_FROM_DATABASE, gum::ArcGraphPart::eraseArc(), gum::NodeGraphPart::exists(), GREEDY_HILL_CLIMBING, greedyHillClimbing_, GUM_ERROR, initialDag_, K2, LOCAL_SEARCH_WITH_TABU_LIST, localSearchWithTabuList_, MIIC, mutualInfo_, gum::SequenceImplementation< Key, std::is_scalar< Key >::value >::pos(), prepareMiic_(), priorDatabase_, priorType_, score_, scoreDatabase_, and selectedAlgo_.
Referenced by learnDAG().
| PDAG gum::learning::IBNLearner::learnPDAG | ( | ) |
learn a partial structure from a file (must have read the db before and must have selected miic)
Definition at line 683 of file IBNLearner.cpp.
References algoMiic_, GUM_ERROR, MIIC, mutualInfo_, prepareMiic_(), scoreDatabase_, and selectedAlgo_.
| double gum::learning::IBNLearner::logLikelihood | ( | const std::vector< NodeId > & | vars, |
| const std::vector< NodeId > & | knowing = {} ) |
Return the loglikelihood of vars in the base, conditioned by knowing for the BNLearner.
| vars | a vector of NodeIds |
| knowing | an optional vector of conditioning NodeIds |
Definition at line 999 of file IBNLearner.cpp.
References createPrior_(), databaseRanges(), prior_, gum::learning::ScoreLog2Likelihood::score(), and scoreDatabase_.
Referenced by logLikelihood().
| double gum::learning::IBNLearner::logLikelihood | ( | const std::vector< std::string > & | vars, |
| const std::vector< std::string > & | knowing = {} ) |
Return the loglikelihood of vars in the base, conditioned by knowing for the BNLearner.
| vars | a vector of name of rows |
| knowing | an optional vector of conditioning rows |
Definition at line 1015 of file IBNLearner.cpp.
References idFromName(), and logLikelihood().
|
inlineoverridevirtual |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1196 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
|
inlineoverridevirtual |
returns the timeout (in seconds)
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1237 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
|
inherited |
Returns the approximation scheme message.
Definition at line 59 of file IApproximationSchemeConfiguration_inl.h.
References Continue, Epsilon, epsilon(), Limit, maxIter(), maxTime(), minEpsilonRate(), Rate, stateApproximationScheme(), Stopped, TimeLimit, and Undefined.
Referenced by gum::credal::InferenceEngine< GUM_SCALAR >::getApproximationSchemeMsg(), and gum::credal::MultipleInferenceEngine< GUM_SCALAR, LazyPropagation< GUM_SCALAR > >::stateApproximationScheme().
|
inlineoverridevirtual |
Get the value of the minimal epsilon rate.
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1156 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
| double gum::learning::IBNLearner::mutualInformation | ( | const std::string & | var1, |
| const std::string & | var2, | ||
| const std::vector< std::string > & | knowing = {} ) |
Return the mutual information of var1 and var2 in the base, conditioned by knowing for the BNLearner.
| var1 | name of a row |
| var2 | name of a row |
| knowing | an optional vector of conditioning rows |
Definition at line 1076 of file IBNLearner.cpp.
References idFromName(), and mutualInformation().
| double gum::learning::IBNLearner::mutualInformation | ( | NodeId | id1, |
| NodeId | id2, | ||
| const std::vector< NodeId > & | knowing = {} ) |
Return the mutual information of id1 and id2 in the base, conditioned by knowing for the BNLearner.
| id1 | nodeId |
| id2 | nodeId |
| knowing | an optional vector of conditioning NodeIds |
Definition at line 1065 of file IBNLearner.cpp.
References databaseRanges(), gum::learning::CorrectedMutualInformation::score(), scoreDatabase_, and gum::learning::CorrectedMutualInformation::useNoCorr().
Referenced by mutualInformation().
| INLINE const std::string & gum::learning::IBNLearner::nameFromId | ( | NodeId | id | ) | const |
returns the variable name corresponding to a given node id
Definition at line 140 of file IBNLearner_inl.h.
References scoreDatabase_.
| INLINE const std::vector< std::string > & gum::learning::IBNLearner::names | ( | ) | const |
returns the names of the variables in the database
Definition at line 534 of file IBNLearner_inl.h.
References scoreDatabase_.
| INLINE Size gum::learning::IBNLearner::nbCols | ( | ) | const |
Definition at line 565 of file IBNLearner_inl.h.
References scoreDatabase_.
|
inlineoverridevirtual |
| OperationNotAllowed | if scheme not performed |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1310 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
| INLINE Size gum::learning::IBNLearner::nbRows | ( | ) | const |
Definition at line 567 of file IBNLearner_inl.h.
References scoreDatabase_.
| IBNLearner & gum::learning::IBNLearner::operator= | ( | const IBNLearner & | from | ) |
copy operator
Definition at line 277 of file IBNLearner.cpp.
References IBNLearner(), algoK2_, algoMiic_, algoSimpleMiic_, constraintForbiddenArcs_, constraintIndegree_, constraintMandatoryArcs_, constraintNoChildrenNodes_, constraintNoParentNodes_, constraintSliceOrder_, constraintTabuList_, currentAlgorithm_, dag2BN_, filename_, greedyHillClimbing_, initialDag_, kmodeMiic_, localSearchWithTabuList_, mutualInfo_, nbDecreasingChanges_, noiseEM_, gum::ThreadNumberManager::operator=(), paramEstimatorType_, prior_, priorDatabase_, priorDbname_, priorType_, priorWeight_, ranges_, score_, scoreDatabase_, scoreType_, selectedAlgo_, and useEM_.
| IBNLearner & gum::learning::IBNLearner::operator= | ( | IBNLearner && | from | ) |
move operator
Definition at line 333 of file IBNLearner.cpp.
References IBNLearner(), algoK2_, algoMiic_, algoSimpleMiic_, constraintForbiddenArcs_, constraintIndegree_, constraintMandatoryArcs_, constraintNoChildrenNodes_, constraintNoParentNodes_, constraintSliceOrder_, constraintTabuList_, currentAlgorithm_, dag2BN_, filename_, greedyHillClimbing_, initialDag_, kmodeMiic_, localSearchWithTabuList_, mutualInfo_, nbDecreasingChanges_, noiseEM_, gum::ThreadNumberManager::operator=(), paramEstimatorType_, prior_, priorDatabase_, priorDbname_, priorType_, priorWeight_, ranges_, score_, scoreDatabase_, scoreType_, selectedAlgo_, and useEM_.
|
inlineoverridevirtual |
how many samples between 2 stopping isEnableds
| OutOfBounds | if p<1 |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1279 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
|
protected |
prepares the initial graph for miic
Definition at line 594 of file IBNLearner.cpp.
References gum::DAG::addArc(), gum::DiGraph::addArc(), gum::UndiGraph::addEdge(), gum::NodeGraphPart::addNodeWithId(), algoMiic_, constraintForbiddenArcs_, constraintIndegree_, constraintMandatoryArcs_, constraintNoChildrenNodes_, constraintNoParentNodes_, constraintPossibleEdges_, constraintSliceOrder_, createCorrectedMutualInformation_(), gum::Set< Key >::empty(), gum::NodeGraphPart::nodes(), and scoreDatabase_.
Referenced by learnDag_(), and learnPDAG().
|
protected |
prepares the initial graph for Simple Miic
| std::vector< double > gum::learning::IBNLearner::rawPseudoCount | ( | const std::vector< NodeId > & | vars | ) |
Return the pseudo-counts of NodeIds vars in the base in a raw array.
| vars | a vector of |
Definition at line 1106 of file IBNLearner.cpp.
References createPrior_(), databaseRanges(), gum::learning::PseudoCount::get(), GUM_ERROR, hasMissingValues(), prior_, and scoreDatabase_.
Referenced by rawPseudoCount().
| std::vector< double > gum::learning::IBNLearner::rawPseudoCount | ( | const std::vector< std::string > & | vars | ) |
Return the pseudoconts of vars in the base in a raw array.
| vars | a vector of name |
Definition at line 1121 of file IBNLearner.cpp.
References idFromName(), and rawPseudoCount().
|
staticprotected |
reads a file and returns a databaseVectInRam
Definition at line 443 of file IBNLearner.cpp.
References database(), gum::learning::IDBInitializer::fillDatabase(), gum::learning::DBTranslatorSet::insertTranslator(), isCSVFileName_(), and gum::learning::IDBInitializer::variableNames().
Referenced by gum::learning::IBNLearner::Database::Database().
| INLINE double gum::learning::IBNLearner::recordWeight | ( | const std::size_t | i | ) | const |
returns the weight of the ith record
| OutOfBounds | if i is outside the set of indices of the records |
Definition at line 155 of file IBNLearner_inl.h.
References scoreDatabase_.
| double gum::learning::IBNLearner::score | ( | const std::string & | vars, |
| const std::vector< std::string > & | knowing = {} ) |
Return the value of the score currently in use by the BNLearner of a variable given a set of other variables The score used is the one currently selected in the BNLearner.
| var | the name of the variable |
| knowing | an optional vector of conditioning variables, specified by their names |
Definition at line 1095 of file IBNLearner.cpp.
References idFromName(), and score().
Return the value of the score currently in use by the BNLearner of a variable given a set of other variables.
| var | the NodeId of the LHS variable |
| knowing | an optional vector of conditioning variables, specified by their NodeIds |
Definition at line 1088 of file IBNLearner.cpp.
References createPrior_(), createScore_(), and score_.
Referenced by score(), and useDatabaseRanges().
|
inline |
{@ /// distribute signals
Definition at line 1082 of file IBNLearner.h.
References currentAlgorithm_.
Referenced by gum::learning::BNLearnerListener::BNLearnerListener(), distributeProgress(), and distributeStop().
| INLINE void gum::learning::IBNLearner::setDatabaseWeight | ( | const double | new_weight | ) |
assign a weight to all the rows of the learning database so that the sum of their weights is equal to new_weight
assign new weight to the rows of the learning database
Definition at line 145 of file IBNLearner_inl.h.
References scoreDatabase_.
|
inlineoverridevirtual |
Given that we approximate f(t), stopping criterion on |f(t+1)-f(t)| If the criterion was disabled it will be enabled.
| OutOfBounds | if eps<0 |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1109 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
| INLINE void gum::learning::IBNLearner::setForbiddenArcs | ( | const ArcSet & | set | ) |
assign a set of forbidden arcs
Definition at line 360 of file IBNLearner_inl.h.
References constraintForbiddenArcs_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::setForbiddenArcs().
| INLINE void gum::learning::IBNLearner::setInitialDAG | ( | const DAG & | dag | ) |
sets an initial DAG structure
Definition at line 163 of file IBNLearner_inl.h.
References initialDag_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::setInitialDAG().
| INLINE void gum::learning::IBNLearner::setMandatoryArcs | ( | const ArcSet & | set | ) |
assign a set of mandatory arcs
Definition at line 393 of file IBNLearner_inl.h.
References constraintMandatoryArcs_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::setMandatoryArcs().
| INLINE void gum::learning::IBNLearner::setMaxIndegree | ( | Size | max_indegree | ) |
sets the max indegree
Definition at line 204 of file IBNLearner_inl.h.
References constraintIndegree_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::setMaxIndegree().
|
inlineoverridevirtual |
stopping criterion on number of iterationsIf the criterion was disabled it will be enabled
| max | The maximum number of iterations |
| OutOfBounds | if max<=1 |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1189 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
stopping criterion on timeout If the criterion was disabled it will be enabled
| OutOfBounds | if timeout<=0.0 timeout is time in second (double). |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1230 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
Given that we approximate f(t), stopping criterion on d/dt(|f(t+1)-f(t)|) If the criterion was disabled it will be enabled.
| OutOfBounds | if rate<0 |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1149 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
overridevirtual |
sets the number max of threads that can be used
| nb | the number max of threads to be used. If this number is set to 0, then it is defaulted to aGrUM's max number of threads |
Reimplemented from gum::ThreadNumberManager.
Definition at line 570 of file IBNLearner_inl.h.
References score_, and gum::ThreadNumberManager::setNumberOfThreads().
|
inlineoverridevirtual |
how many samples between 2 stopping isEnableds
| OutOfBounds | if p<1 |
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1273 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
| INLINE void gum::learning::IBNLearner::setPossibleEdges | ( | const EdgeSet & | set | ) |
assign a set of possible edges
Definition at line 320 of file IBNLearner_inl.h.
References constraintPossibleEdges_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::setPossibleEdges(), and setPossibleSkeleton().
| INLINE void gum::learning::IBNLearner::setPossibleSkeleton | ( | const UndiGraph & | skeleton | ) |
assign a set of possible edges
Definition at line 325 of file IBNLearner_inl.h.
References gum::EdgeGraphPart::edges(), and setPossibleEdges().
Referenced by gum::learning::BNLearner< GUM_SCALAR >::setPossibleSkeleton().
| INLINE void gum::learning::IBNLearner::setRecordWeight | ( | const std::size_t | i, |
| const double | weight ) |
sets the weight of the ith record of the database
assign new weight to the ith row of the learning database
| OutOfBounds | if i is outside the set of indices of the records or if the weight is negative |
Definition at line 150 of file IBNLearner_inl.h.
References scoreDatabase_.
| INLINE void gum::learning::IBNLearner::setSliceOrder | ( | const NodeProperty< NodeId > & | slice_order | ) |
sets a partial order on the nodes
| slice_order | a NodeProperty given the rank (priority) of nodes in the partial order |
Definition at line 456 of file IBNLearner_inl.h.
References constraintSliceOrder_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::setSliceOrder(), gum::learning::BNLearner< GUM_SCALAR >::setSliceOrder(), and setSliceOrder().
| INLINE void gum::learning::IBNLearner::setSliceOrder | ( | const std::vector< std::vector< std::string > > & | slices | ) |
sets a partial order on the nodes
| slices | the list of list of variable names |
Definition at line 460 of file IBNLearner_inl.h.
References idFromName(), gum::HashTable< Key, Val >::insert(), and setSliceOrder().
|
inlineoverridevirtual |
verbosity
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1288 of file IBNLearner.h.
References algoK2_, greedyHillClimbing_, and localSearchWithTabuList_.
|
inlineoverridevirtual |
history
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1304 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
| INLINE void gum::learning::IBNLearner::useBDeuPrior | ( | double | weight = 1.0 | ) |
use the BDeu prior
The BDeu prior adds weight to all the cells of the counts tables. In other words, it adds weight rows in the database with equally probable values.
Definition at line 508 of file IBNLearner_inl.h.
References _setPriorWeight_(), BDEU, checkScorePriorCompatibility(), GUM_ERROR, and priorType_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useBDeuPrior().
| std::pair< std::size_t, std::size_t > gum::learning::IBNLearner::useCrossValidationFold | ( | const std::size_t | learning_fold, |
| const std::size_t | k_fold ) |
sets the ranges of rows to be used for cross-validation learning
When applied on (x,k), the method indicates to the subsequent learnings that they should be performed on the xth fold in a k-fold cross-validation context. For instance, if a database has 1000 rows, and if we perform a 10-fold cross-validation, then, the first learning fold (learning_fold=0) corresponds to rows interval [100,1000) and the test dataset corresponds to [0,100). The second learning fold (learning_fold=1) is [0,100) U [200,1000) and the corresponding test dataset is [100,200).
| learning_fold | a number indicating the set of rows used for learning. If N denotes the size of the database, and k_fold represents the number of folds in the cross validation, then the set of rows used for testing is [learning_fold * N / k_fold, (learning_fold+1) * N / k_fold) and the learning database is the complement in the database |
| k_fold | the value of "k" in k-fold cross validation |
| OutOfBounds | is raised if k_fold is equal to 0 or learning_fold is greater than or eqal to k_fold, or if k_fold is greater than or equal to the size of the database. |
Definition at line 924 of file IBNLearner.cpp.
References GUM_ERROR, ranges_, and scoreDatabase_.
| void gum::learning::IBNLearner::useDatabaseRanges | ( | const std::vector< std::pair< std::size_t, std::size_t > > & | new_ranges | ) |
use a new set of database rows' ranges to perform learning
| ranges | a set of pairs {(X1,Y1),...,(Xn,Yn)} of database's rows indices. The subsequent learnings are then performed only on the union of the rows [Xi,Yi), i in {1,...,n}. This is useful, e.g, when performing cross validation tasks, in which part of the database should be ignored. An empty set of ranges is equivalent to an interval [X,Y) ranging over the whole database. |
Definition at line 1131 of file IBNLearner.cpp.
References noPrior_, ranges_, score(), and scoreDatabase_.
| INLINE void gum::learning::IBNLearner::useDirichletPrior | ( | const std::string & | filename, |
| double | weight = 1 ) |
use the Dirichlet prior from a database
Definition at line 497 of file IBNLearner_inl.h.
References _setPriorWeight_(), checkScorePriorCompatibility(), DIRICHLET_FROM_DATABASE, GUM_ERROR, priorDbname_, and priorType_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useDirichletPrior().
| INLINE void gum::learning::IBNLearner::useEM | ( | const double | epsilon, |
| const double | noise = default_EM_noise ) |
use The EM algorithm to learn parameters
| epsilon | sets the approximation stopping criterion: EM stops whenever the absolute value of the relative difference between two consecutive log-likelihoods drops below epsilon. Note that epsilon=0 is considered as a directive to not use EM. However, if you wish to forbid the use of EM, prefer executing Method forbidEM() rather than useEM(0) as it is more unequivocal. |
| noise | When EM starts, it initializes all the CPTs of the Bayes net. EM adds a noise to these CPTs by mixing their values with some random noise. The formula used is, up to some normalizing constant: new_cpt = (1-noise) * cpt + noise * random_cpt(). Of course, noise must belong to interval [0,1]. |
| OutOfBounds | is raised if epsilon is strictly negative or if noise does not belong to interval [0,1]. |
Definition at line 257 of file IBNLearner_inl.h.
References dag2BN_, epsilon(), GUM_ERROR, noiseEM_, and useEM_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useEM(), and useEMWithRateCriterion().
| INLINE void gum::learning::IBNLearner::useEMWithDiffCriterion | ( | const double | epsilon, |
| const double | noise = default_EM_noise ) |
use The EM algorithm to learn parameters with the diff stopping criterion
use The EM algorithm to learn parameters with the diff stoppîng criterion
| epsilon | epsilon sets the approximation stopping criterion: EM stops whenever the difference between two consecutive log-likelihoods drops below epsilon. Note that, for using EM, epsilon should be strictly positive. |
| noise | When EM starts, it initializes all the CPTs of the Bayes net. EM adds a noise to these CPTs by mixing their values with some random noise. The formula used is, up to some normalizing constant: new_cpt = (1-noise) * cpt + noise * random_cpt(). Of course, noise must belong to interval [0,1]. |
| OutOfBounds | is raised if epsilon is not strictly positive or if noise does not belong to interval [0,1]. |
Definition at line 280 of file IBNLearner_inl.h.
References dag2BN_, epsilon(), GUM_ERROR, noiseEM_, and useEM_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useEMWithDiffCriterion().
| INLINE void gum::learning::IBNLearner::useEMWithRateCriterion | ( | const double | epsilon, |
| const double | noise = default_EM_noise ) |
use The EM algorithm to learn parameters with the rate stopping criterion
| epsilon | epsilon sets the approximation stopping criterion: EM stops whenever the absolute value of the relative difference between two consecutive log-likelihoods drops below epsilon. Note that, for using EM, epsilon should be strictly positive. |
| noise | When EM starts, it initializes all the CPTs of the Bayes net. EM adds a noise to these CPTs by mixing their values with some random noise. The formula used is, up to some normalizing constant: new_cpt = (1-noise) * cpt + noise * random_cpt(). Of course, noise must belong to interval [0,1]. |
| OutOfBounds | is raised if epsilon is not strictly positive or if noise does not belong to interval [0,1]. |
Definition at line 273 of file IBNLearner_inl.h.
References epsilon(), GUM_ERROR, and useEM().
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useEMWithRateCriterion().
| INLINE void gum::learning::IBNLearner::useGreedyHillClimbing | ( | ) |
indicate that we wish to use a greedy hill climbing algorithm
Definition at line 244 of file IBNLearner_inl.h.
References GREEDY_HILL_CLIMBING, and selectedAlgo_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useGreedyHillClimbing().
indicate that we wish to use K2
Definition at line 232 of file IBNLearner_inl.h.
References algoK2_, K2, and selectedAlgo_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useK2(), and gum::learning::BNLearner< GUM_SCALAR >::useK2().
| INLINE void gum::learning::IBNLearner::useK2 | ( | const std::vector< NodeId > & | order | ) |
indicate that we wish to use K2
Definition at line 238 of file IBNLearner_inl.h.
References algoK2_, K2, and selectedAlgo_.
| INLINE void gum::learning::IBNLearner::useLocalSearchWithTabuList | ( | Size | tabu_size = 100, |
| Size | nb_decrease = 2 ) |
indicate that we wish to use a local search with tabu list
| tabu_size | indicate the size of the tabu list |
| nb_decrease | indicate the max number of changes decreasing the score consecutively that we allow to apply |
Definition at line 249 of file IBNLearner_inl.h.
References constraintTabuList_, LOCAL_SEARCH_WITH_TABU_LIST, localSearchWithTabuList_, nbDecreasingChanges_, and selectedAlgo_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useLocalSearchWithTabuList().
| INLINE void gum::learning::IBNLearner::useMDLCorrection | ( | ) |
indicate that we wish to use the MDL correction for MIIC
| OperationNotAllowed | when MIIC is not the selected algorithm |
Definition at line 217 of file IBNLearner_inl.h.
References kmodeMiic_, and gum::learning::CorrectedMutualInformation::MDL.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useMDLCorrection().
| INLINE void gum::learning::IBNLearner::useMIIC | ( | ) |
indicate that we wish to use MIIC
Definition at line 209 of file IBNLearner_inl.h.
References MIIC, and selectedAlgo_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useMIIC().
| INLINE void gum::learning::IBNLearner::useNMLCorrection | ( | ) |
indicate that we wish to use the NML correction for and MIIC
indicate that we wish to use the NML correction for MIIC
| OperationNotAllowed | when MIIC is not the selected algorithm |
Definition at line 212 of file IBNLearner_inl.h.
References kmodeMiic_, and gum::learning::CorrectedMutualInformation::NML.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useNMLCorrection().
| INLINE void gum::learning::IBNLearner::useNoCorrection | ( | ) |
indicate that we wish to use the NoCorr correction for MIIC
| OperationNotAllowed | when MIIC is not the selected algorithm |
Definition at line 222 of file IBNLearner_inl.h.
References kmodeMiic_, and gum::learning::CorrectedMutualInformation::NoCorr.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useNoCorrection().
| INLINE void gum::learning::IBNLearner::useNoPrior | ( | ) |
use no prior
Definition at line 481 of file IBNLearner_inl.h.
References checkScorePriorCompatibility(), NO_prior, and priorType_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useNoPrior().
| INLINE void gum::learning::IBNLearner::useScoreAIC | ( | ) |
indicate that we wish to use an AIC score
Definition at line 168 of file IBNLearner_inl.h.
References AIC, checkScorePriorCompatibility(), and scoreType_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useScoreAIC().
| INLINE void gum::learning::IBNLearner::useScoreBD | ( | ) |
indicate that we wish to use a BD score
Definition at line 174 of file IBNLearner_inl.h.
References BD, checkScorePriorCompatibility(), and scoreType_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useScoreBD().
| INLINE void gum::learning::IBNLearner::useScoreBDeu | ( | ) |
indicate that we wish to use a BDeu score
Definition at line 180 of file IBNLearner_inl.h.
References BDeu, checkScorePriorCompatibility(), and scoreType_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useScoreBDeu().
| INLINE void gum::learning::IBNLearner::useScoreBIC | ( | ) |
indicate that we wish to use a BIC score
Definition at line 186 of file IBNLearner_inl.h.
References BIC, checkScorePriorCompatibility(), and scoreType_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useScoreBIC().
| INLINE void gum::learning::IBNLearner::useScoreK2 | ( | ) |
indicate that we wish to use a K2 score
Definition at line 192 of file IBNLearner_inl.h.
References checkScorePriorCompatibility(), K2, and scoreType_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useScoreK2().
| INLINE void gum::learning::IBNLearner::useScoreLog2Likelihood | ( | ) |
indicate that we wish to use a Log2Likelihood score
Definition at line 198 of file IBNLearner_inl.h.
References checkScorePriorCompatibility(), LOG2LIKELIHOOD, and scoreType_.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useScoreLog2Likelihood().
| INLINE void gum::learning::IBNLearner::useSmoothingPrior | ( | double | weight = 1 | ) |
use the prior smoothing
| weight | pass in argument a weight if you wish to assign a weight to the smoothing, else the current weight of the IBNLearner will be used. |
Definition at line 487 of file IBNLearner_inl.h.
References _setPriorWeight_(), checkScorePriorCompatibility(), GUM_ERROR, priorType_, and SMOOTHING.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useSmoothingPrior().
|
inlineoverridevirtual |
verbosity
Implements gum::IApproximationSchemeConfiguration.
Definition at line 1294 of file IBNLearner.h.
References currentAlgorithm_, and GUM_ERROR.
|
privateinherited |
the max number of threads used by the class
Definition at line 126 of file threadNumberManager.h.
|
protected |
the K2 algorithm
Definition at line 995 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), disableEpsilon(), disableMaxIter(), disableMaxTime(), disableMinEpsilonRate(), enableEpsilon(), enableMaxIter(), enableMaxTime(), enableMinEpsilonRate(), learnDag_(), operator=(), operator=(), setEpsilon(), setMaxIter(), setMaxTime(), setMinEpsilonRate(), setPeriodSize(), setVerbosity(), useK2(), and useK2().
|
protected |
the Constraint MIIC algorithm
Definition at line 1001 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), latentVariables(), learnDag_(), learnPDAG(), operator=(), operator=(), and prepareMiic_().
|
protected |
the MIIC algorithm
Definition at line 998 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), operator=(), and operator=().
|
protected |
the constraint on forbidden arcs
Definition at line 976 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), addForbiddenArc(), eraseForbiddenArc(), learnDag_(), operator=(), operator=(), prepareMiic_(), and setForbiddenArcs().
|
protected |
the constraint for indegrees
Definition at line 970 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), learnDag_(), operator=(), operator=(), prepareMiic_(), and setMaxIndegree().
|
protected |
the constraint on mandatory arcs
Definition at line 982 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), addMandatoryArc(), eraseMandatoryArc(), learnDag_(), operator=(), operator=(), prepareMiic_(), and setMandatoryArcs().
|
protected |
the constraint on no children nodes
Definition at line 988 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), addNoChildrenNode(), eraseNoChildrenNode(), learnDag_(), operator=(), operator=(), and prepareMiic_().
|
protected |
the constraint on no parent nodes
Definition at line 985 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), addNoParentNode(), eraseNoParentNode(), learnDag_(), operator=(), operator=(), and prepareMiic_().
|
protected |
the constraint on possible Edges
Definition at line 979 of file IBNLearner.h.
Referenced by addPossibleEdge(), erasePossibleEdge(), learnDag_(), prepareMiic_(), and setPossibleEdges().
|
protected |
the constraint for 2TBNs
Definition at line 967 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), learnDag_(), operator=(), operator=(), prepareMiic_(), and setSliceOrder().
|
protected |
the constraint for tabu lists
Definition at line 973 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), learnDag_(), operator=(), operator=(), and useLocalSearchWithTabuList().
|
protected |
Definition at line 1038 of file IBNLearner.h.
Referenced by currentTime(), epsilon(), history(), isEnabledEpsilon(), isEnabledMaxIter(), isEnabledMaxTime(), isEnabledMinEpsilonRate(), maxIter(), maxTime(), minEpsilonRate(), nbrIterations(), operator=(), operator=(), periodSize(), setCurrentApproximationScheme(), stateApproximationScheme(), and verbosity().
|
protected |
the parametric EM
Definition at line 1008 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), EM(), EMCurrentTime(), EMdisableEpsilon(), EMdisableMaxIter(), EMdisableMaxTime(), EMdisableMinEpsilonRate(), EMenableEpsilon(), EMenableMaxIter(), EMenableMaxTime(), EMenableMinEpsilonRate(), EMEpsilon(), EMHistory(), EMisEnabledEpsilon(), EMisEnabledMaxIter(), EMisEnabledMaxTime(), EMisEnabledMinEpsilonRate(), EMMaxIter(), EMMaxTime(), EMMinEpsilonRate(), EMnbrIterations(), EMPeriodSize(), EMsetEpsilon(), EMsetMaxIter(), EMsetMaxTime(), EMsetMinEpsilonRate(), EMsetPeriodSize(), EMsetVerbosity(), EMState(), EMStateApproximationScheme(), EMStateMessage(), EMVerbosity(), operator=(), operator=(), useEM(), and useEMWithDiffCriterion().
|
staticconstexpr |
the default noise amount added to CPTs during EM's initialization (see method useEM())
Definition at line 120 of file IBNLearner.h.
Referenced by gum::learning::BNLearner< GUM_SCALAR >::useEM(), gum::learning::BNLearner< GUM_SCALAR >::useEMWithDiffCriterion(), and gum::learning::BNLearner< GUM_SCALAR >::useEMWithRateCriterion().
|
protected |
the filename database
Definition at line 1032 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), IBNLearner(), IBNLearner(), operator=(), and operator=().
|
protected |
the greedy hill climbing algorithm
Definition at line 1011 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), disableEpsilon(), disableMaxIter(), disableMaxTime(), disableMinEpsilonRate(), enableEpsilon(), enableMaxIter(), enableMaxTime(), enableMinEpsilonRate(), learnDag_(), operator=(), operator=(), setEpsilon(), setMaxIter(), setMaxTime(), setMinEpsilonRate(), setPeriodSize(), and setVerbosity().
|
protected |
the policy for typing variables
Definition at line 935 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), IBNLearner(), and IBNLearner().
|
protected |
an initial DAG given to learners
Definition at line 1029 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), initialDAG(), learnDag_(), operator=(), operator=(), and setInitialDAG().
|
protected |
the penalty used in MIIC
Definition at line 1004 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), correctedMutualInformation(), createCorrectedMutualInformation_(), operator=(), operator=(), useMDLCorrection(), useNMLCorrection(), and useNoCorrection().
|
protected |
the local search with tabu list algorithm
Definition at line 1014 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), disableEpsilon(), disableMaxIter(), disableMaxTime(), disableMinEpsilonRate(), enableEpsilon(), enableMaxIter(), enableMaxTime(), enableMinEpsilonRate(), learnDag_(), operator=(), operator=(), setEpsilon(), setMaxIter(), setMaxTime(), setMinEpsilonRate(), setPeriodSize(), setVerbosity(), and useLocalSearchWithTabuList().
|
protected |
the selected correction for miic
Definition at line 953 of file IBNLearner.h.
Referenced by ~IBNLearner(), createCorrectedMutualInformation_(), learnDag_(), learnPDAG(), operator=(), and operator=().
|
protected |
Definition at line 1035 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), operator=(), operator=(), and useLocalSearchWithTabuList().
|
protected |
the noise factor (in (0,1)) used by EM for perturbing the CPT during init
Definition at line 950 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), operator=(), operator=(), useEM(), and useEMWithDiffCriterion().
|
protected |
Definition at line 961 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), IBNLearner(), IBNLearner(), IBNLearner(), ~IBNLearner(), createCorrectedMutualInformation_(), createParamEstimator_(), and useDatabaseRanges().
Progression, error and time.
Definition at line 80 of file IApproximationSchemeConfiguration.h.
Referenced by gum::learning::IBNLearner::distributeProgress(), gum::learning::Miic::initiation_(), gum::learning::SimpleMiic::initiation_(), gum::learning::Miic::iteration_(), gum::learning::SimpleMiic::iteration_(), gum::learning::SimpleMiic::orientationLatents_(), gum::learning::Miic::orientationMiic_(), and gum::learning::SimpleMiic::orientationMiic_().
|
inherited |
Criteria messageApproximationScheme.
Definition at line 83 of file IApproximationSchemeConfiguration.h.
Referenced by gum::learning::IBNLearner::distributeStop().
|
protected |
the type of the parameter estimator
Definition at line 944 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), createParamEstimator_(), operator=(), and operator=().
|
protected |
the prior used
Definition at line 959 of file IBNLearner.h.
Referenced by ~IBNLearner(), chi2(), correctedMutualInformation(), createParamEstimator_(), createScore_(), G2(), logLikelihood(), operator=(), operator=(), and rawPseudoCount().
|
protected |
the database used by the Dirichlet a priori
Definition at line 1023 of file IBNLearner.h.
Referenced by ~IBNLearner(), learnDag_(), operator=(), and operator=().
|
protected |
the filename for the Dirichlet a priori, if any
Definition at line 1026 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), operator=(), operator=(), and useDirichletPrior().
|
protected |
the a priorselected for the score and parameters
Definition at line 956 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), getPriorType_(), learnDag_(), operator=(), operator=(), useBDeuPrior(), gum::learning::BNLearner< GUM_SCALAR >::useDirichletPrior(), useDirichletPrior(), useNoPrior(), and useSmoothingPrior().
|
protected |
the weight of the prior
Definition at line 964 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), _setPriorWeight_(), checkScorePriorCompatibility(), operator=(), and operator=().
|
protected |
the set of rows' ranges within the database in which learning is done
Definition at line 1020 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), clearDatabaseRanges(), createCorrectedMutualInformation_(), createParamEstimator_(), createScore_(), databaseRanges(), operator=(), operator=(), useCrossValidationFold(), and useDatabaseRanges().
|
protected |
the score used
Definition at line 941 of file IBNLearner.h.
Referenced by ~IBNLearner(), createParamEstimator_(), createScore_(), learnDag_(), operator=(), operator=(), score(), and setNumberOfThreads().
|
protected |
the database to be used by the scores and parameter estimators
Definition at line 1017 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), IBNLearner(), IBNLearner(), IBNLearner(), chi2(), correctedMutualInformation(), createCorrectedMutualInformation_(), createParamEstimator_(), createScore_(), database(), databaseWeight(), domainSize(), domainSize(), domainSizes(), G2(), hasMissingValues(), idFromName(), learnDag_(), learnPDAG(), logLikelihood(), mutualInformation(), nameFromId(), names(), nbCols(), nbRows(), operator=(), operator=(), prepareMiic_(), rawPseudoCount(), recordWeight(), setDatabaseWeight(), setRecordWeight(), useCrossValidationFold(), and useDatabaseRanges().
|
protected |
the score selected for learning
Definition at line 938 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), checkScorePriorCompatibility(), createScore_(), operator=(), operator=(), useScoreAIC(), useScoreBD(), useScoreBDeu(), useScoreBIC(), useScoreK2(), and useScoreLog2Likelihood().
|
protected |
the selected learning algorithm
Definition at line 992 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), isConstraintBased(), learnDag_(), learnPDAG(), operator=(), operator=(), useGreedyHillClimbing(), useK2(), useK2(), useLocalSearchWithTabuList(), and useMIIC().
|
protected |
a Boolean indicating whether we should use EM for parameter learning or not
Definition at line 947 of file IBNLearner.h.
Referenced by IBNLearner(), IBNLearner(), EM(), EMState(), EMStateMessage(), forbidEM(), isUsingEM(), operator=(), operator=(), useEM(), and useEMWithDiffCriterion().