Fine-Tuning¶
Fine-tuning updates some or all parameters of a model already trained by pretraining (or another source task) on a smaller downstream dataset or objective—full fine-tuning, layer-wise freezing, LoRA / adapters, or task heads—so the model specializes while retaining general representations.
Why it matters in GWAS¶
Biomedical sequence models and text LLMs are often fine-tuned on cohort-specific labels, ontology mapping, or variant effect benchmarks; small or biased fine-tune sets can overfit population structure or lab artifacts, hurting portability across ancestries. Methods should report what was frozen, learning rates, and data provenance like any GWAS sensitivity analysis.
Example usage¶
"We applied Fine-Tuning to the pretrained DNA encoder on cell-type-specific accessibility labels before scoring fine-mapped SNPs."
Related terms¶
References¶
- Devlin J, et al. (2019). BERT: pre-training of deep bidirectional transformers for language understanding. NAACL.
- Brown T, et al. (2020). Language models are few-shot learners. NeurIPS.
Last updated (UTC · Git history)