AIAny

Keeping NN Simple by Minimizing the Description Legnth of the Weights

Treats a network's weights as a noisy channel and penalizes the bits needed to describe them, formalizing the "bits-back" coding trick — an early variational argument later recognized as a conceptual ancestor of the VAE.

Introduction

Long before "regularization" meant dropout or weight decay tuned by a grid search, this 1993 paper framed overfitting as a coding problem: a network generalizes only when its weights carry less information than the outputs they explain. That reframing is the quiet payload here — not a benchmark win, but a way of thinking. The "bits-back" argument it introduces, where the apparent cost of transmitting noisy weights is partly refunded, would resurface two decades later as the backbone of variational autoencoders and modern variational inference.

Key Findings
  • Weights as a message to be compressed. Generalization is recast through the Minimum Description Length principle: keep the description length of the weights small, and you control complexity directly rather than through ad hoc penalties.
  • Noise as the regularizer. Adding adaptive Gaussian noise to each weight makes "information content" a differentiable quantity, so the trade-off between squared error and weight information can be optimized by gradient descent, not guesswork.
  • The bits-back insight. Sending stochastic weights looks wasteful, but the receiver can recover the random bits used to pick them — a refund that makes the true coding cost match a variational bound, the same identity VAEs later exploit.
  • Exact, cheap derivatives. With linear output units the relevant gradients compute in closed form, sidestepping the Monte Carlo estimates such stochastic schemes usually demand.
Why It Still Matters / When to Skip

Great fit if you want to trace where variational inference in deep learning actually began, or to see the bits-back coding argument stated cleanly before it became VAE folklore. Look elsewhere if you want empirical muscle — the experiments are preliminary, showing only a slight edge over weight decay; the lasting value is conceptual, the lineage it started, not the numbers it reported.

Information

  • Websitewww.cs.toronto.edu
  • OrganizationsUniversity of Toronto
  • AuthorsGeoffrey E. Hinton, Drew van Camp
  • Published date1993/08/01

More Items

Performs native structural reasoning for proteins, small molecules and inorganic crystals by tokenizing coordinates, topologies and periodic connectivities into a unified structure-aware vocabulary. Treats structural tokens as addressable evidence to produce interpretable prediction traces and improves accuracy across biology, chemistry and materials benchmarks.

A 2019 essay arguing that over 70 years of AI, general methods that scale with computation — search and learning — consistently beat hand-coded human knowledge. The short text that crystallized the scaling-vs-priors debate.

Proposes a router redesign for Mixture-of-Experts (MoE) that aligns each router row with its expert's principal singular direction using Manifold Power Iteration (MPI), improving token–expert affinity. MPI applies a 'power‑then‑retract' step to push router rows toward principal singular vectors while enforcing norm constraints; the paper gives convergence theory and pretraining results on 1B–11B MoE models.