When you describe a sequence of numbers with a formula, something remarkable happens: a simple formula compresses the data into itself, while a convoluted formula that merely memorizes each point compresses nothing at all. This intuition is the seed of Minimum Description Length (MDL).
Introduced by Jorma Rissanen in 1978, MDL gives Occam's razor a precise mathematical form. The best model for a dataset is the one that minimizes the total description length — the number of bits needed to encode the model itself plus the number of bits needed to encode the data given the model. A model that fits perfectly but has a hundred free parameters may cost more in model bits than it saves in data bits: MDL will reject it.
The core idea is tight: compression equals understanding. A model that genuinely captures a regularity in the data can compress that data. A model that merely memorizes the data cannot be compressed further. This connection to Kolmogorov complexity and Bayesian inference makes MDL one of the deepest frameworks in machine learning and statistics.
Comments
Loading comments...