Dictionary
Fine-Tuning
Fine-tuning is the process of taking a pre-trained AI model and further training it on a smaller, task-specific dataset to improve its performance on a particular domain or use case. Rather than training a model from scratch, which requires enormous computational resources, fine-tuning starts from an already capable base model and adjusts its weights to specialize in the target task.
Common applications include training a language model on company documentation to improve support responses, adapting an image model to recognize specific product categories, or teaching a code model the conventions of a particular codebase. The process requires curated training data formatted as input-output pairs. For web developers building AI-powered features, fine-tuning bridges the gap between a general-purpose model and one that performs reliably for a specific application. The tradeoff is that it requires data preparation effort, compute costs, and ongoing maintenance as the base model or requirements evolve.