# Backpropagation Through Time

> Source: https://sukruyusufkaya.com/en/glossary/backpropagation-through-time
> Updated: 2026-05-13T20:58:24.860Z
> Type: glossary
> Category: derin-ogrenme
**TLDR:** A method in sequential models where the network is unrolled across time steps and gradients are computed backward.

<p>Backpropagation Through Time is an extended form of backpropagation used especially to train RNN-based models. The network is unrolled across time, and each time step’s contribution to the loss is traced backward into the past. While this makes learning long dependencies theoretically possible, it also introduces major challenges such as vanishing and exploding gradients. Architectures like LSTM and GRU were largely developed to mitigate these issues.</p>