Methods › Natural Language Processing › Reading Comprehension Models › Deep LSTM Reader

Deep LSTM Reader

1 paper tagged archive 2025-07-28

Introduced by Karl Moritz Hermann et al. in Teaching Machines to Read and Comprehend

archive 2025-07-28 Description, source and code snippet are the archive's method entry.

The Deep LSTM Reader is a neural network for reading comprehension. We feed documents one word at a time into a Deep LSTM encoder, after a delimiter we then also feed the query into the encoder. The model therefore processes each document query pair as a single long sequence. Given the embedded document and query the network predicts which token in the document answers the query.

The model consists of a Deep LSTM cell with skip connections from each input x(t) to every hidden layer, and from every hidden layer to the output y(t):

x′(t, k) = x(t)||y′(t, k - 1) , y(t) = y′(t, 1)|| …||y′(t, K)

i(t, k) = (Wₖₓᵢx′(t, k) + Wₖₕᵢh(t - 1, k) + W_(kci)c(t - 1, k) + bₖᵢ)

f(t, k) = (W_(kxf)x(t) + W_(khf)h(t - 1, k) + W_(kcf)c(t - 1, k) + b_(kf))

c(t, k) = f(t, k)c(t - 1, k) + i(t, k)tanh(W_(kxc)x′(t, k) + W_(khc)h(t - 1, k) + b_(kc))

o(t, k) = (Wₖₓₒx′(t, k) + Wₖₕₒh(t - 1, k) + W_(kco)c(t, k) + bₖₒ)

h(t, k) = o(t, k)tanh(c(t, k))

y′(t, k) = W_(kyh)(t, k) + b_(ky)

where || indicates vector concatenation, h(t, k) is the hidden state for layer k at time t, and i, f, o are the input, forget, and output gates respectively. Thus our Deep LSTM Reader is defined by g^(LSTM)(d, q) = y(|d|+|q|) with input x(t) the concatenation of d and q separated by the delimiter |||.

PaperSource

Papers archive 2025-07-28

1 shown of 1, newest first. Repository counts are the archive's code-links table. A Syntology line states what Syntology ran from that paper's harvested code; it is per sample and not a correctness claim.

Tasks archive 2025-07-28

1 task the archive attaches to papers tagged with this method, by distinct papers. A task without a page in the catalog is plain text.

TaskPapers
Reading Comprehension1

Usage over time archive 2025-07-28

Papers per year tagged with Deep LSTM Reader: 2015 to 2015, peak 1 1 0 2015: 1 paper 2015
Papers per year the archive tags with this method, by the paper's archive date (1 dated). Bars are counts, not a trend claim.

Components: the archive holds no method-to-method composition, so PwC's Components table cannot be rebuilt; the Papers list carries no Results column for the same reason (the archive does not join its leaderboard rows to method tags).

Categories archive 2025-07-28

Reading Comprehension ModelsRecurrent Neural Networks

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections