Adversarial Training
Ordinary training examples show what usually happens. Alignment failures often live in what rarely happens: edge cases, strategic inputs, and combinations the training set barely represents.
Adversarial training adds deliberately difficult examples to training so the model learns to handle a defined failure class.
Training Distribution
Build a curriculum for ordinary, edge, and adversarial cases
The training objective can be written as . The inner maximization searches the allowed set for a hard example. The outer minimization trains parameters to reduce loss on that example.
The set defines the lesson. Training against image perturbations does little for data poisoning or prompt injection. Alignment teams need a portfolio of stress cases tied to the deployed system.
For an AI interviewer, name one ordinary case, one natural edge case, and one adversarial case you would include in training.