Distribution Boundary
The distribution boundary is the conceptual and operational frontier that separates the data distribution on which a system was trained or designed from the data distributions it may encounter in deployment. It is not a geometric boundary in feature space but a statistical and epistemic one: the boundary marks the edge of what the system has learned, beyond which its predictions become extrapolations rather than interpolations, and its confidence becomes a measure of distance rather than certainty.
In machine learning, the distribution boundary is the central problem of out-of-distribution detection and generalization. A model trained on photographs of cats assumes a specific distribution of pixel correlations, lighting conditions, and object poses. When presented with a cartoon drawing of a cat, it crosses the distribution boundary. The model may still classify correctly—if the training distribution was broad enough—but its confidence is no longer calibrated. The perturbation that produces an adversarial example is a targeted crossing of the distribution boundary: a small step in input space that produces a large step in distributional space.
The distribution boundary is not merely a property of AI systems. Financial models that assume normally distributed returns cross the distribution boundary during market crashes, when returns follow fat-tailed distributions. Climate models that assume stationary weather patterns cross the distribution boundary when anthropogenic forcing changes the underlying dynamics. Medical treatments that assume a patient population cross the distribution boundary when applied to a different demographic. In each case, the system's performance collapses not because the input is large but because the input is structurally different.
The challenge of distribution boundaries is that they are invisible to the systems that depend on them. A model does not know that it has crossed a boundary; it merely produces an output with whatever confidence its architecture computes. The boundary must be detected from outside, by comparing the input to the training distribution, by monitoring the model's behavior for signs of instability, or by maintaining causal models that can recognize when their assumptions are violated.
See also: Adversarial Fragility, Distributional Shift, Out-of-Distribution Detection, Robustness, Causal Mechanism