Why Prompting Matters
Prompting is a lightweight adaptation technique that guides a pre-trained language model toward specific tasks by embedding input-output examples and instructions directly in the prompt. Instead of retraining or fine-tuning, prompting changes what the model sees at inference time while keeping the model frozen. Prompting adapts the input; fine-tuning adapts the model.
- No parameter updates
- No backpropagation
- Adapts at inference on the fly
- Works with just a few examples
- Same model serves multiple tasks
- Cost scales with API queries
- Updates model parameters
- Requires backpropagation
- Needs a training phase
- Requires labeled training data
- Produces task-specific models
- Cost is upfront in training time