memory Networks

From statwiki
Revision as of 04:30, 16 November 2015 by Pblouw (talk | contribs) (Added summary of model architecture)
Jump to navigation Jump to search

Content in progress

Introduction

Most supervised machine learning models are designed to approximate a function that maps input data to a desirable output (e.g. a class label for an image or a translation of a sentence from one language to another). In this sense, such models perform inference using a 'fixed' memory in the form of a set of parameters learned during training. For example, the memory of a recurrent neural network is constituted largely by the weights on the recurrent connections to its hidden layer (along with the layer's activities). As is well known, this form of memory is inherently limited given the fixed dimensionality of the weights in question. It is largely for this reason that recurrent nets have difficulty learning long-range dependencies in sequential data. Learning such dependencies, note, requires remembering the items in a sequence for a large number of time steps.

For an interesting class of problems, it is essential for a model to be able to learn long-term dependencies, and to more generally be able to learn to perform inferences using an arbitrarily large memory. Question-answering tasks are paradigmatic of this class of problems, since performing well on such tasks requires remembering all of the information that constitutes a possible answer to the questions being posed. In principle, a recurrent network such as an LSTM could learn to perform QA tasks, but in practice, the amount of information that can be retained by the weights and the hidden states in the LSTM is simply insufficient.

Given this need for a model architecture the combines inference and memory in a sophisticated manner, the authors of this paper propose what they refer to as a "Memory Network". In brief, a memory network is a model that learns to read and write data to an arbitrarily large long-term memory, while also using the data in this memory to perform inferences. The rest of this summary describes the components of a memory network in greater detail, along with some experiments describing its application to a question answering task involving short stories.

Model Architecture

A memory network is composed of a memory m (in the form of a collection of vectors or strings, indexed individually as [math]\displaystyle{ m_i }[/math]), and four possibly learned functions I, G, O, and R. The functions are defined as follows:

  • I maps a natural language expression onto an 'input' feature representation (e.g., a real-valued vector). The input can either be a fact to be added to the memory m (e.g. 'John is at the university') , or a question for which an answer is being sought (e.g. 'Where is John?').
  • G updates the contents of the memory m on the basis of an input. The updating can involve simply writing the input to new memory location, or it can involve the modification or compression of existing memories to perform a kind of generalization on the state of the memory.
  • O produces an 'output' feature representation given a new input and the current state of the memory. The input and output feature representations reside in the same embedding space.
  • R produces a response given an output feature representation. This response is usually a word or a sentence, but in principle it could also be an action of some kind (e.g. the movement of a robot)

To give a quick overview of how the model operates, an input x will first be mapped to a feature representation I(x). Then, for all memories i in m, the following update is applied: [math]\displaystyle{ m_i = G(m_i, I(x), m) }[/math]. This means that each memory is updated on the basis of the input x and the current state of the memory m. In the case where each input is simply written to memory, G might function to simply select an index that is currently empty and write I(x) to the memory location corresponding to this index.

Next, an output feature representation is computed as [math]\displaystyle{ o=O(I(x), m) }[/math], and a response, r, is computed directly from this feature representation as [math]\displaystyle{ r=R(o) }[/math]. "O" can be interpreted as retrieving a small selection of memories that are relevant to producing a good response, and "R actually produces the response given the feature representation produced from the relevant memories by O.

A Basic Implementation

The Training Procedure

Some Extensions to the Basic Implementation

Related work

Experimental Results

Discussion

Resources

References