Metrics for testing models¶
- pgmpy.metrics.metrics.correlation_score(model, data, test='chi_square', significance_level=0.05, score=<function f1_score>, return_summary=False)[source]¶
Function to score how well the model structure represents the correlations in the data. The model doesn’t need to be parameterized for this score.
A Bayesian Network or DAG has d-connection property which can be used to determine which variables are correlated according to the model. This function uses this d-connection/d-separation property to compare the model with variable correlations in a given dataset. For every pair of variables in the dataset, a correlation test (specified by test argument) is done. We say that any two variables are correlated if the test’s p-value < significance_level. The same pair of variables are then tested whether they are d-connected in the network structure or not. Finally, a metric specified by score is computed by using the correlation test as the true value and d-connections as predicted values.
Absense of correlation/d-separation is considered as the positive class for computing the metrics.
- Parameters:
model (Instance of pgmpy.base.DAG or pgmpy.models.BayesianNetwork) – The model which needs to be tested.
data (pandas.DataFrame instance) – The dataset against which to test the model structure.
test (str or function) – The statistical tests to use for determining whether the variables in data are correlated or not. For discrete variables, the options are: 1) chi_square 2) g_sq 3) log_likelihood 4) freeman_tuckey 5) modified_log_likelihood 6) neyman 7) cressie_read. For continuous variables only one test is available: 1) pearsonr. A function with the signature fun(X, Y, Z, data) can also be passed which returns True for uncorrelated and False otherwise.
significance_level (float) – A value between 0 and 1. If p_value < significance_level, the variables are considered uncorrelated.
score (function (default: f1-score)) – Any classification scoring metric from scikit-learn. https://scikit-learn.org/stable/modules/classes.html#classification-metrics
return_summary (boolean (default: False)) – If True, returns a dataframe with details for each of the conditions checked.
- Returns:
The specified metric – The metric specified by the score argument. By defults returns the f1-score.
- Return type:
Examples
>>> from pgmpy.utils import get_examples_model >>> from pgmpy.metrics import correlation_score >>> alarm = get_example_model("alarm") >>> data = alarm.simulate(int(1e4)) >>> correlation_score(alarm, data, test="chi_square", significance_level=0.05) 0.911957950065703
- pgmpy.metrics.metrics.fisher_c(model, data, ci_test, show_progress=True)[source]¶
Returns a p-value for testing whether the given data is faithful to the model structure’s constraints.
Each missing edge in a model structure implies a CI statement. This test uses constructs implied CIs such that they are independent of each other, run statistical tests for each of them on the data, and finally combines them using the Fisher’s method.
- Parameters:
model (pgmpy.base.DAG or pgmpy.models.BayesianNetwork) – The model whose structure need to be tested against the given data.
data (pd.DataFrame) – Dataset to use for testing.
ci_test (function) – The function for statistical test. Can be either any of the tests in pgmpy.estimators.CITests or any custom function of the same form.
show_progress (bool (default: True)) – Whether to show the progress of testing.
- Returns:
float – p-value (e.g. <0.05) represents that the model structure doesn’t fit the data well.
- Return type:
The p-value for the fit of the model structure to the data. A low
Examples
>>> from pgmpy.utils import get_example_model >>> from pgmpy.metrics import implied_cis >>> from pgmpy.estimators.CITests import chi_square >>> model = get_example_model('cancer') >>> df = model.simulate(int(1e3)) >>> fisher_c(model=model, data=df, ci_test=chi_square, show_progress=False) 0.7504
- pgmpy.metrics.metrics.implied_cis(model, data, ci_test, show_progress=True)[source]¶
Tests the implied Conditional Independences (CI) of the DAG in the given data.
Each missing edge in a model structure implies a CI statement. If the distribution of the data is faithful to the constraints of the model structure, these CI statements should hold in the data as well. This function runs statistical tests for each implied CI on the given data.
- model: pgmpy.base.DAG or pgmpy.models.BayesianNetwork
The model whose structure need to be tested against the given data.
- data: pd.DataFrame
Dataset to use for testing.
- ci_test: function
The function for statistical test. Can be either any of the tests in pgmpy.estimators.CITests or any custom function of the same form.
- show_progress: bool (default: True)
Whether to show the progress of testing.
- pd.DataFrame: Returns a dataframe with each implied CI of the model and a p-value
corresponding to it from the statistical test. A low p-value (e.g. <0.05) represents that the CI does not hold in the data.
>>> from pgmpy.utils import get_example_model >>> from pgmpy.metrics import implied_cis >>> from pgmpy.estimators.CITests import chi_square >>> model = get_example_model('cancer') >>> df = model.simulate(int(1e3)) >>> implied_cis(model=model, data=df, ci_test=chi_square, show_progress=False) u v cond_vars p-value
0 Pollution Smoker [] 0.189851 1 Pollution Xray [Cancer] 0.404149 2 Pollution Dyspnoea [Cancer] 0.613370 3 Smoker Xray [Cancer] 0.352665 4 Smoker Dyspnoea [Cancer] 1.000000 5 Xray Dyspnoea [Cancer] 0.888619
- pgmpy.metrics.metrics.log_likelihood_score(model, data)[source]¶
Computes the log-likelihood of a given dataset i.e. P(data | model).
The log-likelihood measure can be used to check how well the specified model describes the data. This method requires the parameters of the model to be specified as well. Direct interpretation of this score is difficult but can be used to compare the fit of two or more models. A higher score means ab better fit.
- Parameters:
model (pgmpy.base.DAG or pgmpy.models.BayesianNetwork instance) – The model whose score needs to be computed.
data (pd.DataFrame instance) – The dataset against which to score the model.
Examples
>>> from pgmpy.metrics import log_likelihood_score >>> from pgmpy.utils import get_example_model >>> model = get_example_model("alarm") >>> data = model.simulate(int(1e4)) >>> log_likelihood_score(model, data) -103818.57516969478
- pgmpy.metrics.metrics.structure_score(model, data, scoring_method='bic', **kwargs)[source]¶
Uses the standard model scoring methods to give a score for each structure. The score doesn’t have very straight forward interpretebility but can be used to compare different models. A higher score represents a better fit. This method only needs the model structure to compute the score and parameters aren’t required.
- Parameters:
model (pgmpy.base.DAG or pgmpy.models.BayesianNetwork instance) – The model whose score needs to be computed.
data (pd.DataFrame instance) – The dataset against which to score the model.
scoring_method (str ( k2 | bdeu | bds | bic )) – The following four scoring methods are supported currently: 1) K2Score 2) BDeuScore 3) BDsScore 4) BicScore
kwargs (kwargs) – Any additional parameters that needs to be passed to the scoring method. Check pgmpy.estimators.StructureScore for details.
- Returns:
Model score – A score value for the model.
- Return type:
Examples
>>> from pgmpy.utils import get_example_model >>> from pgmpy.metrics import structure_score >>> model = get_example_model('alarm') >>> data = model.simulate(int(1e4)) >>> structure_score(model, data, scoring_method="bic") -106665.9383064447