Backpropagation¶
Definition
AI-generated
Backpropagation is the algorithm that computes gradients of a loss with respect to all neural network weights by applying the chain rule backward through the computation graph, enabling efficient gradient descent training of deep models.
Topics
Synonyms
Why it matters in GWAS¶
Backpropagation underpins essentially all modern deep learning used in genomics—from sequence predictors to single-cell models—so reported performance depends on optimization details, regularization, and data splits as much as on architecture.
Example usage¶
"The variant scorer was a 20-layer ResNet-style CNN trained with Adam and standard backpropagation on windows around ClinVar sites."
Related terms¶
References¶
- Rumelhart DE, Hinton GE, Williams RJ. (1986). Learning representations by back-propagating errors. Nature.
Last updated (UTC · Git history)