What is transfer learning and when is fine-tuning better than feature extraction?
medium- Transfer learning reuses a model pretrained on a large source task on a new target task.
- Feature extraction freezes the backbone and trains a new head — fast, works when the target is small and similar to pretraining data.
- Full fine-tuning updates all weights — better when you have enough target data or when target differs significantly.
- Modern LLMs often use parameter-efficient fine-tuning (LoRA, adapters) to combine both benefits.