Minimum Description Length Score
Definition
The Minimum Description Length Score (MDL Score) is derived from Information Theory and has been used extensively in the Artificial Intelligence community.
It consists of the sum of two components that estimate:
- the minimum number of bits required to represent a model, and
- the minimum number of bits required to represent the data given the model.
However, in the specific context of Bayesian networks, we need to explain the exact meaning and the notation of these two components:
- Calculating Complexity: DL(B)
- Calculating Fit: DL(D|B) "the minimum number of bits required to represent a model" is denoted (="Description Length of the Bayesian network ") and refers to the structural complexity of the Bayesian network model , which includes the network graph and all probability tables.
- For brevity, we often use the shorthand "complexity" or "structure" to refer to .
- Small values of suggest a simple model structure, and large values a complex model.
- The goal of this structural part is to apply Occam's Razor, or the law of parsimony, i.e., to choose the simplest hypothesis, all other things being equal.
- "the minimum number of bits required to represent the data given the model" is denoted (="Description Length of the data given the Bayesian network ") and refers to the likelihood of the data with respect to the Bayesia network model .
- The data likelihood is inversely proportional to the probability of the observed dataset, as inferred by the Bayesian network model.
- Put simply, refers to the "fit" of the model to the data.
- Small values of suggest a well-fitting model; large values, conversely, imply a poor fit.
BayesiaLab attempts to minimize the MDL Score by evaluating candidate networks during structural learning.