doi
stringlengths 9
10
| chunk-id
stringlengths 1
4
| chunk
stringlengths 1
1.57k
| id
stringlengths 9
10
| title
stringlengths 10
127
| summary
stringlengths 581
1.92k
| source
stringlengths 30
31
| authors
sequence | categories
sequence | comment
stringclasses 28
values | journal_ref
stringclasses 1
value | primary_category
stringclasses 6
values | published
stringlengths 8
8
| updated
stringlengths 8
8
| references
list |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1806.01261 | 968 | This demo creates random graphs, and trains a GN to label the nodes and edges on the shortest
path between any two nodes. Over a sequence of message-passing steps (as depicted by each
step's plot), the model renes its prediction of the shortest path.
Sort demo: tinyurl.com/gn-sort-demo
This demo creates lists of random numbers, and trains a GN to sort the list. After a sequence
of message-passing steps, the model makes an accurate prediction of which elements (columns
in the gure) come next after each other (rows).
Physics demo: tinyurl.com/gn-physics-demo
This demo creates random mass-spring physical systems, and trains a GN to predict the state of
the system on the next timestep. The model's next-step predictions can be fed back in as input
to create a rollout of a future trajectory. Each subplot below shows the true and predicted
mass-spring system states over 50 timesteps. This is similar to the model and experiments in
(Battaglia et al., 2016)'s \interaction networks".
21
toeandv, the nodes and edges can be treated like the batch dimension in typical mini-batch
training regimes. Moreover, several graphs can be naturally batched together by treating them as | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 969 | training regimes. Moreover, several graphs can be naturally batched together by treating them as
disjoint components of a larger graph. With some additional bookkeeping, this allows batching
together the computations made on several independent graphs.
Reusingeandvalso improves GNs' sample eciency. Again, analogous to a convolutional
kernel, the number of samples which are used to optimize a GN's eandvfunctions is the number
of edges and nodes, respectively, across all training graphs. For example, in the balls example
from Sec. 3.2, a scene with four balls which are all connected by springs will provide twelve (4 3)
examples of the contact interaction between them.
We have released an open-source software library for building GNs, which can be found here:
github.com/deepmind/graph nets . See Box 4 for an overview.
4.5 Summary
In this section, we have discussed the design principles behind graph networks:
exible representations, congurable within-block structure, and composable multi-block architectures. These three
design principles combine in our framework which is extremely
exible and applicable to a wide range
of domains ranging from perception, language, and symbolic reasoning. And, as we will see in the | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 970 | design principles combine in our framework which is extremely
exible and applicable to a wide range
of domains ranging from perception, language, and symbolic reasoning. And, as we will see in the
remainder of this paper, the strong relational inductive bias possessed by graph networks supports
combinatorial generalization, thus making it a powerful tool both in terms of implementation and
theory.
5 Discussion
In this paper, we analyzed the extent to which relational inductive bias exists in deep learning
architectures like MLPs, CNNs, and RNNs, and concluded that while CNNs and RNNs do contain
relational inductive biases, they cannot naturally handle more structured representations such as
sets or graphs. We advocated for building stronger relational inductive biases into deep learning
architectures by highlighting an underused deep learning building block called a graph network ,
which performs computations over graph-structured data. Our graph network framework unies
existing approaches that also operate over graphs, and provides a straightforward interface for
assembling graph networks into complex, sophisticated architectures.
5.1 Combinatorial generalization in graph networks
The structure of GNs naturally supports combinatorial generalization because they do not perform
computations strictly at the system level, but also apply shared computations across the entities and | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 971 | The structure of GNs naturally supports combinatorial generalization because they do not perform
computations strictly at the system level, but also apply shared computations across the entities and
across the relations as well. This allows never-before-seen systems to be reasoned about, because
they are built from familiar components, in a way that re
ects von Humboldt's \innite use of nite
means" (Humboldt, 1836; Chomsky, 1965).
A number of studies have explored GNs' capacity for combinatorial generalization. Battaglia
et al. (2016) found that GNs trained to make one-step physical state predictions could simulate
thousands of future time steps, and also exhibit accurate zero-shot transfer to physical systems
with double, or half, the number of entities experienced during training. Sanchez-Gonzalez et al.
(2018) found similar results in more complex physical control settings, including that GNs trained as
forward models on simulated multi-joint agents could generalize to agents with new numbers of joints.
Hamrick et al. (2018) and Wang et al. (2018b) each found that GN-based decision-making policies
could transfer to novel numbers of entities as well. In combinatorial optimization problems, Bello
22 | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 972 | could transfer to novel numbers of entities as well. In combinatorial optimization problems, Bello
22
et al. (2016); Nowak et al. (2017); Dai et al. (2017); Kool and Welling (2018) showed that GNs could
generalize well to problems of much dierent sizes than they had been trained on. Similarly, Toyer
et al. (2017) showed generalization to dierent sizes of planning problems, and Hamilton et al. (2017)
showed generalization to producing useful node embeddings for previously unseen data. On boolean
SAT problems, Selsam et al. (2018) demonstrated generalization both to dierent problem sizes and
across problem distributions: their model retained good performance upon strongly modifying the
distribution of the input graphs and its typical local structure.
These striking examples of combinatorial generalization are not entirely surprising, given GNs'
entity- and relation-centric organization, but nonetheless provide important support for the view
that embracing explicit structure and
exible learning is a viable approach toward realizing better
sample eciency and generalization in modern AI.
5.2 Limitations of graph networks
One limitation of GNs' and MPNNs' form of learned message-passing (Shervashidze et al., 2011) | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 973 | 5.2 Limitations of graph networks
One limitation of GNs' and MPNNs' form of learned message-passing (Shervashidze et al., 2011)
is that it cannot be guaranteed to solve some classes of problems, such as discriminating between
certain non-isomorphic graphs. Kondor et al. (2018) suggested that covariance7(Cohen and Welling,
2016; Kondor and Trivedi, 2018), rather than invariance to permutations of the nodes and edges
is preferable, and proposed \covariant compositional networks" which can preserve structural
information, and allow it to be ignored only if desired.
More generally, while graphs are a powerful way of representing structure information, they
have limits. For example, notions like recursion, control
ow, and conditional iteration are not
straightforward to represent with graphs, and, minimally, require additional assumptions (e.g., in
interpreting abstract syntax trees). Programs and more \computer-like" processing can oer greater
representational and computational expressivity with respect to these notions, and some have argued
they are an important component of human cognition (Tenenbaum et al., 2011; Lake et al., 2015;
Goodman et al., 2015).
5.3 Open questions
Although we are excited about the potential impacts that graph networks can have, we caution that | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 974 | Goodman et al., 2015).
5.3 Open questions
Although we are excited about the potential impacts that graph networks can have, we caution that
these models are only one step forward. Realizing the full potential of graph networks will likely be
far more challenging than organizing their behavior under one framework, and indeed, there are a
number of unanswered questions regarding the best ways to use graph networks.
One pressing question is: where do the graphs come from that graph networks operate over?
One of the hallmarks of deep learning has been its ability to perform complex computations over
raw sensory data, such as images and text, yet it is unclear the best ways to convert sensory data
into more structured representations like graphs. One approach (which we have already discussed)
assumes a fully connected graph structure between spatial or linguistic entities, such as in the
literature on self-attention (Vaswani et al., 2017; Wang et al., 2018c). However, such representations
may not correspond exactly to the \true" entities (e.g., convolutional features do not directly
correspond to objects in a scene). Moreover, many underlying graph structures are much more
sparse than a fully connected graph, and it is an open question how to induce this sparsity. Several
lines of active research are exploring these issues (Watters et al., 2017; van Steenkiste et al., 2018; | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 975 | lines of active research are exploring these issues (Watters et al., 2017; van Steenkiste et al., 2018;
Li et al., 2018; Kipf et al., 2018) but as of yet there is no single method which can reliably extract
discrete entities from sensory data. Developing such a method is an exciting challenge for future
7Covariance means, roughly, that the activations vary in a predictable way as a function of the ordering of the
incoming edges.
23
research, and once solved will likely open the door for much more powerful and
exible reasoning
algorithms.
A related question is how to adaptively modify graph structures during the course of computation.
For example, if an object fractures into multiple pieces, a node representing that object also ought
to split into multiple nodes. Similarly, it might be useful to only represent edges between objects
that are in contact, thus requiring the ability to add or remove edges depending on context. The
question of how to support this type of adaptivity is also actively being researched, and in particular,
some of the methods used for identifying the underlying structure of a graph may be applicable (e.g.
Li et al., 2018; Kipf et al., 2018).
Human cognition makes the strong assumption that the world is composed of objects and | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 976 | Li et al., 2018; Kipf et al., 2018).
Human cognition makes the strong assumption that the world is composed of objects and
relations (Spelke and Kinzler, 2007), and because GNs make a similar assumption, their behavior
tends to be more interpretable. The entities and relations that GNs operate over often correspond
to things that humans understand (such as physical objects), thus supporting more interpretable
analysis and visualization (e.g., as in Selsam et al., 2018). An interesting direction for future work
is to further explore the interpretability of the behavior of graph networks.
5.4 Integrative approaches for learning and structure
While our focus here has been on graphs, one takeaway from this paper is less about graphs
themselves and more about the approach of blending powerful deep learning approaches with
structured representations. We are excited by related approaches which have explored this idea for
other types of structured representations and computations, such as linguistic trees (Socher et al.,
2011a,b, 2012, 2013; Tai et al., 2015; Andreas et al., 2016), partial tree traversals in a state-action
graph (Guez et al., 2018; Farquhar et al., 2018), hierarchical action policies (Andreas et al., 2017), | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 977 | graph (Guez et al., 2018; Farquhar et al., 2018), hierarchical action policies (Andreas et al., 2017),
multi-agent communication channels (Foerster et al., 2016), \capsules" (Sabour et al., 2017), and
programs (Parisotto et al., 2017). Other methods have attempted to capture dierent types of
structure by mimicking key hardware and software components in computers and how they transfer
information between each other, such as persistent slotted storage, registers, memory I/O controllers,
stacks, and queues (e.g. Dyer et al., 2015; Grefenstette et al., 2015; Joulin and Mikolov, 2015;
Sukhbaatar et al., 2015; Kurach et al., 2016; Graves et al., 2016).
5.5 Conclusion
Recent advances in AI, propelled by deep learning, have been transformative across many important
domains. Despite this, a vast gap between human and machine intelligence remains, especially with
respect to ecient, generalizable learning. We argue for making combinatorial generalization a top
priority for AI, and advocate for embracing integrative approaches which draw on ideas from human
cognition, traditional computer science, standard engineering practice, and modern deep learning.
Here we explored
exible learning-based approaches which implement strong relational inductive | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 978 | cognition, traditional computer science, standard engineering practice, and modern deep learning.
Here we explored
exible learning-based approaches which implement strong relational inductive
biases to capitalize on explicitly structured representations and computations, and presented a
framework called graph networks , which generalize and extend various recent approaches for neural
networks applied to graphs. Graph networks are designed to promote building complex architectures
using customizable graph-to-graph building blocks, and their relational inductive biases promote
combinatorial generalization and improved sample eciency over other standard machine learning
building blocks.
Despite their benets and potential, however, learnable models which operate on graphs are
only a stepping stone on the path toward human-like intelligence. We are optimistic about a
number of other relevant, and perhaps underappreciated, research directions, including marrying
24
learning-based approaches with programs (Ritchie et al., 2016; Andreas et al., 2016; Gaunt et al.,
2016; Evans and Grefenstette, 2018; Evans et al., 2018), developing model-based approaches with an
emphasis on abstraction (Kansky et al., 2017; Konidaris et al., 2018; Zhang et al., 2018; Hay et al.,
2018), investing more heavily in meta-learning (Wang et al., 2016, 2018a; Finn et al., 2017), and | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 979 | 2018), investing more heavily in meta-learning (Wang et al., 2016, 2018a; Finn et al., 2017), and
exploring multi-agent learning and interaction as a key catalyst for advanced intelligence (Nowak,
2006; Ohtsuki et al., 2006). These directions each involve rich notions of entities, relations, and
combinatorial generalization, and can potentially benet, and benet from, greater interaction with
approaches for learning relational reasoning over explicitly structured representations.
Acknowledgements
We thank Tobias Pfa, Danilo Rezende, Nando de Freitas, Murray Shanahan, Thore Graepel, John
Jumper, Demis Hassabis, and the broader DeepMind and Google communities for valuable feedback
and support.
References
Allamanis, M., Brockschmidt, M., and Khademi, M. (2018). Learning to represent programs with
graphs. In Proceedings of the International Conference on Learning Representations (ICLR) .
Allamanis, M., Chanthirasegaran, P., Kohli, P., and Sutton, C. (2017). Learning continuous
semantic representations of symbolic expressions. In Proceedings of the International Conference
on Machine Learning (ICML) .
Anderson, J. R. (1982). Acquisition of cognitive skill. Psychological Review , 89(4):369. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 980 | on Machine Learning (ICML) .
Anderson, J. R. (1982). Acquisition of cognitive skill. Psychological Review , 89(4):369.
Andreas, J., Klein, D., and Levine, S. (2017). Modular multitask reinforcement learning with policy
sketches. In Proceedings of the International Conference on Machine Learning (ICML) .
Andreas, J., Rohrbach, M., Darrell, T., and Klein, D. (2016). Neural module networks. In Proceedings
of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , pages 39{48.
Ba, J. L., Kiros, J. R., and Hinton, G. E. (2016). Layer normalization. arXiv preprint
arXiv:1607.06450 .
Bahdanau, D., Cho, K., and Bengio, Y. (2015). Neural machine translation by jointly learning to
align and translate. In Proceedings of the International Conference on Learning Representations
(ICLR) .
Battaglia, P., Pascanu, R., Lai, M., Rezende, D. J., et al. (2016). Interaction networks for learning
about objects, relations and physics. In Advances in Neural Information Processing Systems ,
pages 4502{4510. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 981 | about objects, relations and physics. In Advances in Neural Information Processing Systems ,
pages 4502{4510.
Battaglia, P. W., Hamrick, J. B., and Tenenbaum, J. B. (2013). Simulation as an engine of physical
scene understanding. Proceedings of the National Academy of Sciences , 110(45):18327{18332.
Bello, I., Pham, H., Le, Q. V., Norouzi, M., and Bengio, S. (2016). Neural combinatorial optimization
with reinforcement learning. arXiv preprint arXiv:1611.09940 .
Bobrow, D. G. and Hinton, G. E., editors (1990). Articial Intelligence , volume 46. Elsevier Science
Publishers Ltd., Essex, UK. Special Issue 1-2: On Connectionist Symbol Processing.
25
Bojchevski, A., Shchur, O., Z ugner, D., and G unnemann, S. (2018). Netgan: Generating graphs via
random walks. arXiv preprint arXiv:1803.00816 .
Bordes, A., Usunier, N., Garcia-Duran, A., Weston, J., and Yakhnenko, O. (2013). Translating | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 982 | Bordes, A., Usunier, N., Garcia-Duran, A., Weston, J., and Yakhnenko, O. (2013). Translating
embeddings for modeling multi-relational data. In Advances in Neural Information Processing
Systems , pages 2787{2795.
Botvinick, M. M. (2008). Hierarchical models of behavior and prefrontal function. Trends in
Cognitive Sciences , 12(5):201{208.
Bronstein, M. M., Bruna, J., LeCun, Y., Szlam, A., and Vandergheynst, P. (2017). Geometric deep
learning: going beyond euclidean data. IEEE Signal Processing Magazine , 34(4):18{42.
Bruna, J., Zaremba, W., Szlam, A., and LeCun, Y. (2014). Spectral networks and locally connected
networks on graphs. In Proceedings of the International Conference on Learning Representations
(ICLR) .
Chang, M. B., Ullman, T., Torralba, A., and Tenenbaum, J. B. (2017). A compositional objectbased approach to learning physical dynamics. In Proceedings of the International Conference on
Learning Representations (ICLR) . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 983 | Learning Representations (ICLR) .
Chen, X., Li, L., Fei-Fei, L., and Gupta, A. (2018a). Iterative visual reasoning beyond convolutions.
InProceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) .
Chen, X., Liu, C., and Song, D. (2018b). Tree-to-tree neural networks for program translation. In
Workshops of the International Conference on Learning Representations (ICLR) .
Cho, K., Van Merri enboer, B., Gulcehre, C., Bahdanau, D., Bougares, F., Schwenk, H., and Bengio,
Y. (2014). Learning phrase representations using rnn encoder-decoder for statistical machine
translation. In Proceeding of the Conference on Empirical Methods in Natural Language Processing
(EMNLP) .
Chomsky, N. (1957). Syntactic Structures . Mouton & Co.
Chomsky, N. (1965). Aspects of the Theory of Syntax . MIT Press.
Cohen, T. and Welling, M. (2016). Group equivariant convolutional networks. In International
Conference on Machine Learning , pages 2990{2999. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 984 | Cohen, T. and Welling, M. (2016). Group equivariant convolutional networks. In International
Conference on Machine Learning , pages 2990{2999.
Craik, K. J. W. (1943). The Nature of Explanation . Cambridge University Press.
Cui, Z., Henrickson, K., Ke, R., and Wang, Y. (2018). High-order graph convolutional recurrent
neural network: A deep learning framework for network-scale trac learning and forecasting.
arXiv preprint arXiv:1802.07007 .
Dai, H., Dai, B., and Song, L. (2016). Discriminative embeddings of latent variable models for
structured data. In Proceedings of the International Conference on Machine Learning (ICML) .
Dai, H., Khalil, E. B., Zhang, Y., Dilkina, B., and Song, L. (2017). Learning combinatorial
optimization algorithms over graphs. In Advances in Neural Information Processing Systems .
De Cao, N. and Kipf, T. (2018). MolGAN: An implicit generative model for small molecular graphs.
arXiv preprint arXiv:1805.11973 .
26 | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 985 | arXiv preprint arXiv:1805.11973 .
26
Deerrard, M., Bresson, X., and Vandergheynst, P. (2016). Convolutional neural networks on graphs
with fast localized spectral ltering. In Advances in Neural Information Processing Systems , pages
3844{3852.
Denil, M., Colmenarejo, S. G., Cabi, S., Saxton, D., and de Freitas, N. (2017). Programmable
agents. arXiv preprint arXiv:1706.06383 .
Devlin, J., Uesato, J., Singh, R., and Kohli, P. (2017). Semantic code repair using neuro-symbolic
transformation networks. arXiv preprint arXiv:1710.11054 .
Duvenaud, D. K., Maclaurin, D., Iparraguirre, J., Bombarell, R., Hirzel, T., Aspuru-Guzik, A., and
Adams, R. P. (2015). Convolutional networks on graphs for learning molecular ngerprints. In
Advances in Neural Information Processing Systems , pages 2224{2232. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 986 | Advances in Neural Information Processing Systems , pages 2224{2232.
Dyer, C., Ballesteros, M., Ling, W., Matthews, A., and Smith, N. A. (2015). Transition-based
dependency parsing with stack long short-term memory. In Proceedings of the Annual Meeting of
the Association for Computational Linguistics (ACL) .
D zeroski, S., De Raedt, L., and Driessens, K. (2001). Relational reinforcement learning. Machine
Learning , 43(1-2):7{52.
Edwards, H. and Storkey, A. (2016). Towards a neural statistician. arXiv preprint arXiv:1606.02185 .
Eliasmith, C. (2013). How to build a brain: A neural architecture for biological cognition . Oxford
University Press.
Elman, J. L. (1990). Finding structure in time. Cognitive Science , 14(2):179{211.
Elman, J. L. (1991). Distributed representations, simple recurrent networks, and grammatical
structure. Machine Learning , 7(2-3):195{225. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 987 | Elman, J. L. (1991). Distributed representations, simple recurrent networks, and grammatical
structure. Machine Learning , 7(2-3):195{225.
Eslami, S. A., Heess, N., Weber, T., Tassa, Y., Szepesvari, D., Hinton, G. E., et al. (2016). Attend,
infer, repeat: Fast scene understanding with generative models. In Advances in Neural Information
Processing Systems , pages 3225{3233.
Evans, R. and Grefenstette, E. (2018). Learning explanatory rules from noisy data. Journal of
Articial Intelligence Research , 61:1{64.
Evans, R., Saxton, D., Amos, D., Kohli, P., and Grefenstette, E. (2018). Can neural networks
understand logical entailment? In Proceedings of the International Conference on Learning
Representations (ICLR) .
Farquhar, G., Rockt aschel, T., Igl, M., and Whiteson, S. (2018). TreeQN and ATreeC: Dierentiable
tree planning for deep reinforcement learning. In Proceedings of the International Conference on
Learning Representations (ICLR) . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 988 | tree planning for deep reinforcement learning. In Proceedings of the International Conference on
Learning Representations (ICLR) .
Finn, C., Abbeel, P., and Levine, S. (2017). Model-agnostic meta-learning for fast adaptation of
deep networks. arXiv preprint arXiv:1703.03400 .
Fodor, J. A. (1975). The Language of Thought . Harvard University Press.
Fodor, J. A. and Pylyshyn, Z. W. (1988). Connectionism and cognitive architecture: A critical
analysis. Cognition , 28(1-2):3{71.
27
Foerster, J., Assael, I. A., de Freitas, N., and Whiteson, S. (2016). Learning to communicate with
deep multi-agent reinforcement learning. In Advances in Neural Information Processing Systems ,
pages 2137{2145.
Fukushima, K. (1980). Neocognitron: A self-organizing neural network model for a mechanism of
pattern recognition unaected by shift in position. Biological Cybernetics , 36:193{202.
Garcia, V. and Bruna, J. (2018). Few-shot learning with graph neural networks. In Proceedings of
the International Conference on Learning Representations (ICLR) . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 989 | Garcia, V. and Bruna, J. (2018). Few-shot learning with graph neural networks. In Proceedings of
the International Conference on Learning Representations (ICLR) .
Garc a-Dur an, A. and Niepert, M. (2017). Learning graph representations with embedding propagation. arXiv preprint arXiv:1710.03059 .
Garnelo, M., Arulkumaran, K., and Shanahan, M. (2016). Towards deep symbolic reinforcement
learning. arXiv preprint arXiv:1609.05518 .
Gaunt, A. L., Brockschmidt, M., Kushman, N., and Tarlow, D. (2016). Dierentiable programs
with neural libraries. arXiv preprint arXiv:1611.02109 .
Geman, S., Bienenstock, E., and Doursat, R. (1992). Neural networks and the bias/variance dilemma.
Neural Computation , 4(1):1{58.
Gentner, D. and Markman, A. B. (1997). Structure mapping in analogy and similarity. American
Psychologist , 52(1):45.
Getoor, L. and Taskar, B. (2007). Introduction to Statistical Relational Learning . MIT press. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 990 | Psychologist , 52(1):45.
Getoor, L. and Taskar, B. (2007). Introduction to Statistical Relational Learning . MIT press.
Ghahramani, Z. (2015). Probabilistic machine learning and articial intelligence. Nature ,
521(7553):452.
Gilmer, J., Schoenholz, S. S., Riley, P. F., Vinyals, O., and Dahl, G. E. (2017). Neural message
passing for quantum chemistry. arXiv preprint arXiv:1704.01212 .
Goodfellow, I., Bengio, Y., Courville, A., and Bengio, Y. (2016). Deep Learning . MIT Press.
Goodman, N. (1955). The new riddle of induction. In Fact, Fiction, and Forecast , pages 59{83.
Harvard University Press.
Goodman, N., Mansinghka, V., Roy, D. M., Bonawitz, K., and Tenenbaum, J. B. (2012). Church: a
language for generative models. arXiv preprint arXiv:1206.3255 .
Goodman, N. D., Tenenbaum, J. B., and Gerstenberg, T. (2015). Concepts in a probabilistic | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 991 | Goodman, N. D., Tenenbaum, J. B., and Gerstenberg, T. (2015). Concepts in a probabilistic
language of thought. In Margolis, E. and Laurence, S., editors, The Conceptual Mind: New
Directions in the Study of Concepts . MIT Press.
Goodwin, G. P. and Johnson-Laird, P. (2005). Reasoning about relations. Psychological Review ,
112(2):468.
Gori, M., Monfardini, G., and Scarselli, F. (2005). A new model for learning in graph domains. In
Proceedings of the International Joint Conference on Neural Networks (IJCNN) , volume 2, pages
729{734. IEEE.
Graves, A., Wayne, G., Reynolds, M., Harley, T., Danihelka, I., Grabska-Barwi nska, A., Colmenarejo,
S. G., Grefenstette, E., Ramalho, T., Agapiou, J., et al. (2016). Hybrid computing using a neural
network with dynamic external memory. Nature , 538(7626):471.
28
Grefenstette, E., Hermann, K. M., Suleyman, M., and Blunsom, P. (2015). Learning to transduce | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 992 | 28
Grefenstette, E., Hermann, K. M., Suleyman, M., and Blunsom, P. (2015). Learning to transduce
with unbounded memory. In Advances in Neural Information Processing Systems , pages 1828{1836.
Griths, T. L., Chater, N., Kemp, C., Perfors, A., and Tenenbaum, J. B. (2010). Probabilistic
models of cognition: Exploring representations and inductive biases. Trends in Cognitive Sciences ,
14(8):357{364.
Grover, A. and Leskovec, J. (2016). node2vec: Scalable feature learning for networks. In Proceedings
of the 22nd ACM SIGKDD international conference on Knowledge discovery and data mining ,
pages 855{864. ACM.
Guez, A., Weber, T., Antonoglou, I., Simonyan, K., Vinyals, O., Wierstra, D., Munos, R., and
Silver, D. (2018). Learning to search with MCTSnets. arXiv preprint arXiv:1802.04697 . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 993 | Silver, D. (2018). Learning to search with MCTSnets. arXiv preprint arXiv:1802.04697 .
Gulcehre, C., Denil, M., Malinowski, M., Razavi, A., Pascanu, R., Hermann, K. M., Battaglia, P.,
Bapst, V., Raposo, D., Santoro, A., and de Freitas, N. (2018). Hyperbolic attention networks.
arXiv preprint arXiv:1805.09786 .
Hamaguchi, T., Oiwa, H., Shimbo, M., and Matsumoto, Y. (2017). Knowledge transfer for out-ofknowledge-base entities: A graph neural network approach. In Proceedings of the International
Joint Conference on Articial Intelligence (IJCAI) .
Hamilton, W., Ying, Z., and Leskovec, J. (2017). Inductive representation learning on large graphs.
InAdvances in Neural Information Processing Systems , pages 1025{1035.
Hamrick, J., Allen, K., Bapst, V., Zhu, T., McKee, K., Tenenbaum, J., and Battaglia, P. (2018).
Relational inductive bias for physical construction in humans and machines. In Proceedings of the | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 994 | Relational inductive bias for physical construction in humans and machines. In Proceedings of the
40th Annual Conference of the Cognitive Science Society .
Hamrick, J. B., Ballard, A. J., Pascanu, R., Vinyals, O., Heess, N., and Battaglia, P. W. (2017).
Metacontrol for adaptive imagination-based optimization. In Proceedings of the International
Conference on Learning Representations (ICLR) .
Hartford, J., Graham, D. R., Leyton-Brown, K., and Ravanbakhsh, S. (2018). Deep models of
interactions across sets. arXiv preprint arXiv:1803.02879 .
Hay, N., Stark, M., Schlegel, A., Wendelken, C., Park, D., Purdy, E., Silver, T., Phoenix, D. S.,
and George, D. (2018). Behavior is everything{towards representing concepts with sensorimotor
contingencies. In Proceedings of the AAAI Conference on Articial Intelligence (AAAI) .
Hena, M., Bruna, J., and LeCun, Y. (2015). Deep convolutional networks on graph-structured
data. arXiv preprint arXiv:1506.05163 . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 995 | data. arXiv preprint arXiv:1506.05163 .
Hinton, G. E. (1990). Mapping part-whole hierarchies into connectionist networks. Articial
Intelligence , 46(1-2):47{75.
Hjort, N. L., Holmes, C., M uller, P., and Walker, S. G. (2010). Bayesian Nonparametrics . Cambridge
University Press.
Hoshen, Y. (2017). Vain: Attentional multi-agent predictive modeling. In Advances in Neural
Information Processing Systems , pages 2698{2708.
Hu, H., Gu, J., Zhang, Z., Dai, J., and Wei, Y. (2017). Relation networks for object detection.
arXiv preprint arXiv:1711.11575 .
29
Hudson, D. A. and Manning, C. D. (2018). Compositional attention networks for machine reasoning.
InProceedings of the International Conference on Learning Representations (ICLR) .
Humboldt, W. (1999/1836). On Language: On the diversity of human language construction and its
in
uence on the mental development of the human species . Cambridge University Press. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 996 | in
uence on the mental development of the human species . Cambridge University Press.
Hummel, J. E. and Holyoak, K. J. (2003). A symbolic-connectionist theory of relational inference
and generalization. Psychological Review , 110(2):220.
Ioe, S. and Szegedy, C. (2015). Batch normalization: Accelerating deep network training by reducing
internal covariate shift. In Proceedings of the 32nd International Conference on International
Conference on Machine Learning (ICML) .
Johnson, D. D. (2017). Learning graphical state transitions. Proceedings of the International
Conference on Learning Representations (ICLR) .
Joulin, A. and Mikolov, T. (2015). Inferring algorithmic patterns with stack-augmented recurrent
nets. In Advances in Neural Information Processing Systems , pages 190{198.
Kansky, K., Silver, T., M ely, D. A., Eldawy, M., L azaro-Gredilla, M., Lou, X., Dorfman, N., Sidor,
S., Phoenix, S., and George, D. (2017). Schema networks: Zero-shot transfer with a generative
causal model of intuitive physics. In Proceedings of the International Conference on Machine
Learning (ICML) . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 997 | causal model of intuitive physics. In Proceedings of the International Conference on Machine
Learning (ICML) .
Kearnes, S., McCloskey, K., Berndl, M., Pande, V., and Riley, P. (2016). Molecular graph
convolutions: moving beyond ngerprints. Journal of computer-aided molecular design , 30(8):595{
608.
Kemp, C. and Tenenbaum, J. B. (2008). The discovery of structural form. Proceedings of the
National Academy of Sciences , 105(31):10687{10692.
Kipf, T., Fetaya, E., Wang, K.-C., Welling, M., and Zemel, R. (2018). Neural relational inference
for interacting systems. In Proceedings of the International Conference on Machine Learning
(ICML) .
Kipf, T. N. and Welling, M. (2017). Semi-supervised classication with graph convolutional networks.
InProceedings of the International Conference on Learning Representations (ICLR) .
Koller, D. and Friedman, N. (2009). Probabilistic Graphical Models: Principles and Techniques .
MIT press. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 998 | Koller, D. and Friedman, N. (2009). Probabilistic Graphical Models: Principles and Techniques .
MIT press.
Kondor, R., Son, H. T., Pan, H., Anderson, B., and Trivedi, S. (2018). Covariant compositional
networks for learning graphs. arXiv preprint arXiv:1801.02144 .
Kondor, R. and Trivedi, S. (2018). On the generalization of equivariance and convolution in neural
networks to the action of compact groups. arXiv preprint arXiv:1802.03690 .
Konidaris, G., Kaelbling, L. P., and Lozano-Perez, T. (2018). From skills to symbols: Learning
symbolic representations for abstract high-level planning. Journal of Articial Intelligence
Research , 61:215{289.
Kool, W. and Welling, M. (2018). Attention solves your TSP. arXiv preprint arXiv:1803.08475 .
30
Krizhevsky, A., Sutskever, I., and Hinton, G. E. (2012). ImageNet classication with deep convolutional neural networks. In Advances in Neural Information Processing Systems , pages 1097{1105. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 999 | Kurach, K., Andrychowicz, M., and Sutskever, I. (2016). Neural random-access machines. In
Proceedings of the International Conference on Learning Representations (ICLR) .
Lake, B. M. and Baroni, M. (2018). Still not systematic after all these years: On the compositional
skills of sequence-to-sequence recurrent networks. In Proceedings of the International Conference
on Machine Learning (ICML) .
Lake, B. M., Salakhutdinov, R., and Tenenbaum, J. B. (2015). Human-level concept learning
through probabilistic program induction. Science , 350(6266):1332{1338.
Lake, B. M., Ullman, T. D., Tenenbaum, J. B., and Gershman, S. J. (2017). Building machines that
learn and think like people. Behavioral and Brain Sciences , 40.
LeCun, Y., Bengio, Y., and Hinton, G. (2015). Deep learning. Nature , 521(7553):436.
LeCun, Y., Boser, B., Denker, J. S., Henderson, D., Howard, R. E., Hubbard, W., and Jackel, | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1000 | LeCun, Y., Boser, B., Denker, J. S., Henderson, D., Howard, R. E., Hubbard, W., and Jackel,
L. D. (1989). Backpropagation applied to handwritten zip code recognition. Neural computation ,
1(4):541{551.
Li, Y., Tarlow, D., Brockschmidt, M., and Zemel, R. (2016). Gated graph sequence neural networks.
InProceedings of the International Conference on Learning Representations (ICLR) .
Li, Y., Vinyals, O., Dyer, C., Pascanu, R., and Battaglia, P. (2018). Learning deep generative
models of graphs. In Workshops at the International Conference on Learning Representations
(ICLR) .
Li, Y., Yu, R., Shahabi, C., and Liu, Y. (2017). Diusion convolutional recurrent neural network:
Data-driven trac forecasting. arXiv preprint arXiv:1707.01926 .
Lin, Z., Feng, M., Santos, C. N. d., Yu, M., Xiang, B., Zhou, B., and Bengio, Y. (2017). A structured
self-attentive sentence embedding. In Proceedings of the International Conference on Learning | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1001 | self-attentive sentence embedding. In Proceedings of the International Conference on Learning
Representations (ICLR) .
Liu, H., Simonyan, K., Vinyals, O., Fernando, C., and Kavukcuoglu, K. (2018). Hierarchical
representations for ecient architecture search. In Proceedings of the International Conference on
Learning Representations (ICLR) .
Luong, M.-T., Pham, H., and Manning, C. D. (2015). Eective approaches to attention-based neural
machine translation. arXiv preprint arXiv:1508.04025 .
Marcus, G. (2001). The algebraic mind.
Marcus, G. (2018a). Deep learning: A critical appraisal. arXiv preprint arXiv:1801.00631 .
Marcus, G. (2018b). Innateness, alphazero, and articial intelligence. arXiv preprint
arXiv:1801.05667 .
McClelland, J. L. (1994). The interaction of nature and nurture in development: A parallel
distributed processing perspective. International perspectives on psychological science , 1:57{88.
31
McClelland, J. L. and Rumelhart, D. E. (1981). An interactive activation model of context eects | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1002 | 31
McClelland, J. L. and Rumelhart, D. E. (1981). An interactive activation model of context eects
in letter perception: I. an account of basic ndings. Psychological Review , 88(5):375.
Mikolov, T., Yih, W.-t., and Zweig, G. (2013). Linguistic regularities in continuous space word
representations. In Proceedings of the 2013 Conference of the North American Chapter of the
Association for Computational Linguistics: Human Language Technologies , pages 746{751.
Mitchell, T. M. (1980). The need for biases in learning generalizations . Department of Computer
Science, Laboratory for Computer Science Research, Rutgers Univ. New Jersey.
Mnih, V., Heess, N., Graves, A., et al. (2014). Recurrent models of visual attention. In Advances in
neural information processing systems , pages 2204{2212.
Mnih, V., Kavukcuoglu, K., Silver, D., Rusu, A. A., Veness, J., Bellemare, M. G., Graves, A.,
Riedmiller, M., Fidjeland, A. K., Ostrovski, G., et al. (2015). Human-level control through deep | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1003 | Riedmiller, M., Fidjeland, A. K., Ostrovski, G., et al. (2015). Human-level control through deep
reinforcement learning. Nature , 518(7540):529.
Monti, F., Boscaini, D., Masci, J., Rodola, E., Svoboda, J., and Bronstein, M. M. (2017). Geometric
deep learning on graphs and manifolds using mixture model cnns. In Proceedings of the IEEE
Conference on Computer Vision and Pattern Recognition (CVPR) .
Morav c k, M., Schmid, M., Burch, N., Lis y, V., Morrill, D., Bard, N., Davis, T., Waugh, K.,
Johanson, M., and Bowling, M. (2017). Deepstack: Expert-level articial intelligence in heads-up
no-limit poker. Science , 356(6337):508{513.
Narayanan, A., Chandramohan, M., Chen, L., Liu, Y., and Saminathan, S. (2016). subgraph2vec:
Learning distributed representations of rooted sub-graphs from large graphs. In Workshops at the
20th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1004 | Learning distributed representations of rooted sub-graphs from large graphs. In Workshops at the
20th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining .
Narayanan, A., Chandramohan, M., Venkatesan, R., Chen, L., Liu, Y., and Jaiswal, S. (2017).
graph2vec: Learning distributed representations of graphs. arXiv preprint arXiv:1707.05005 .
Navon, D. (1977). Forest before trees: The precedence of global features in visual perception.
Cognitive Psychology , 9(3):353{383.
Niepert, M., Ahmed, M., and Kutzkov, K. (2016). Learning convolutional neural networks for
graphs. In Proceedings of the International Conference on Machine Learning (ICML) , pages
2014{2023.
Nilsson, N. J. and Fikes, R. E. (1970). Strips: A new approach to the application of theorem proving
to problem solving. Technical report, SRI International, Menlo Park, CA Articial Intelligence
Center.
Nowak, A., Villar, S., Bandeira, A. S., and Bruna, J. (2017). A note on learning algorithms for
quadratic assignment with graph neural networks. In Proceedings of the Principled Approaches to | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1005 | quadratic assignment with graph neural networks. In Proceedings of the Principled Approaches to
Deep Learning Workshop (PADL) at the International Conference of Machine Learning (ICML) .
Nowak, M. A. (2006). Five rules for the evolution of cooperation. science , 314(5805):1560{1563.
Ohtsuki, H., Hauert, C., Lieberman, E., and Nowak, M. A. (2006). A simple rule for the evolution
of cooperation on graphs and social networks. Nature , 441(7092):502.
32
O~ noro-Rubio, D., Niepert, M., Garc a-Dur an, A., Gonz alez-S anchez, R., and L opez-Sastre,
R. J. (2017). Representation learning for visual-relational knowledge graphs. arXiv preprint
arXiv:1709.02314 .
Parisotto, E., Mohamed, A.-r., Singh, R., Li, L., Zhou, D., and Kohli, P. (2017). Neuro-symbolic
program synthesis. In Proceedings of the International Conference on Learning Representations
(ICLR) . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1006 | program synthesis. In Proceedings of the International Conference on Learning Representations
(ICLR) .
Pascanu, R., Li, Y., Vinyals, O., Heess, N., Buesing, L., Racani ere, S., Reichert, D., Weber, T.,
Wierstra, D., and Battaglia, P. (2017). Learning model-based planning from scratch. arXiv
preprint arXiv:1707.06170 .
Pearl, J. (1986). Fusion, propagation, and structuring in belief networks. Articial intelligence ,
29(3):241{288.
Pearl, J. (1988). Probabilistic reasoning in intelligent systems: Networks of plausible inference.
Morgan Kaufmann.
Pearl, J. (2009). Causality: Models, Reasoning and Inference . Cambridge University Press, New
York, NY, USA, 2nd edition.
Pearl, J. (2018). Theoretical impediments to machine learning with seven sparks from the causal
revolution. arXiv preprint arXiv:1801.04016 .
Pennington, J., Socher, R., and Manning, C. (2014). Glove: Global vectors for word representation.
InProceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP) , | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1007 | InProceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP) ,
pages 1532{1543.
Perozzi, B., Al-Rfou, R., and Skiena, S. (2014). Deepwalk: Online learning of social representations.
InProceedings of the 20th ACM SIGKDD international conference on Knowledge discovery and
data mining , pages 701{710. ACM.
Pevn y, T. and Somol, P. (2017). Using neural network formalism to solve multiple-instance problems.
InInternational Symposium on Neural Networks , pages 135{142. Springer.
Pinker, S. and Prince, A. (1988). On language and connectionism: Analysis of a parallel distributed
processing model of language acquisition. Cognition , 28(1-2):73{193.
Plate, T. A. (1995). Holographic reduced representations. IEEE Transactions on Neural Networks ,
6(3):623{641.
Plaut, D. C., McClelland, J. L., Seidenberg, M. S., and Patterson, K. (1996). Understanding normal
and impaired word reading: computational principles in quasi-regular domains. Psychological
Review , 103(1):56. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1008 | and impaired word reading: computational principles in quasi-regular domains. Psychological
Review , 103(1):56.
Pollack, J. B. (1990). Recursive distributed representations. Articial Intelligence , 46(1-2):77{105.
Qi, C. R., Su, H., Mo, K., and Guibas, L. J. (2017). Pointnet: Deep learning on point sets for 3d
classication and segmentation. In Proceedings of the IEEE Conference on Computer Vision and
Pattern Recognition (CVPR) .
Raposo, D., Santoro, A., Barrett, D., Pascanu, R., Lillicrap, T., and Battaglia, P. (2017). Discovering
objects and their relations from entangled scene representations. In Workshops at the International
Conference on Learning Representations (ICLR) .
33
Reed, S. and De Freitas, N. (2016). Neural programmer-interpreters. In Proceedings of the
International Conference on Learning Representations (ICLR) .
Ritchie, D., Horsfall, P., and Goodman, N. D. (2016). Deep amortized inference for probabilistic
programs. arXiv preprint arXiv:1610.05735 . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1009 | programs. arXiv preprint arXiv:1610.05735 .
Rosenblatt, F. (1961). Principles of neurodynamics. perceptrons and the theory of brain mechanisms.
Technical report, Cornell Aeronautical Lab Inc., Bualo, NY.
Rumelhart, D. E., McClelland, J. L., Group, P. R., et al. (1987). Parallel Distributed Processing ,
volume 1. MIT Press.
Russell, S. J. and Norvig, P. (2009). Articial Intelligence: A Modern Approach (3rd Edition) .
Pearson.
Sabour, S., Frosst, N., and Hinton, G. E. (2017). Dynamic routing between capsules. In Advances
in Neural Information Processing Systems , pages 3859{3869.
Sanchez-Gonzalez, A., Heess, N., Springenberg, J. T., Merel, J., Riedmiller, M., Hadsell, R., and
Battaglia, P. (2018). Graph networks as learnable physics engines for inference and control. In
Proceedings of the 35th International Conference on Machine Learning (ICLR) . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1010 | Proceedings of the 35th International Conference on Machine Learning (ICLR) .
Santoro, A., Raposo, D., Barrett, D. G., Malinowski, M., Pascanu, R., Battaglia, P., and Lillicrap,
T. (2017). A simple neural network module for relational reasoning. In Advances in Neural
Information Processing Systems .
Scarselli, F., Gori, M., Tsoi, A. C., Hagenbuchner, M., and Monfardini, G. (2009a). Computational
capabilities of graph neural networks. IEEE Transactions on Neural Networks , 20(1):81{102.
Scarselli, F., Gori, M., Tsoi, A. C., Hagenbuchner, M., and Monfardini, G. (2009b). The graph
neural network model. IEEE Transactions on Neural Networks , 20(1):61{80.
Scarselli, F., Yong, S. L., Gori, M., Hagenbuchner, M., Tsoi, A. C., and Maggini, M. (2005). Graph
neural networks for ranking web pages. In Proceedings of the 2005 IEEE/WIC/ACM International
Conference on Web Intelligence , pages 666{672. IEEE. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1011 | neural networks for ranking web pages. In Proceedings of the 2005 IEEE/WIC/ACM International
Conference on Web Intelligence , pages 666{672. IEEE.
Schmidhuber, J. (2015). Deep learning in neural networks: An overview. Neural Networks , 61:85{117.
Selsam, D., Lamm, M., Bunz, B., Liang, P., de Moura, L., and Dill, D. L. (2018). Learning a sat
solver from single-bit supervision. arXiv preprint arXiv:1802.03685 .
Shalev-Shwartz, S., Shamir, O., and Shammah, S. (2017). Failures of gradient-based deep learning.
arXiv preprint arXiv:1703.07950 .
Shaw, P., Uszkoreit, J., and Vaswani, A. (2018). Self-attention with relative position representations.
InProceedings of the 16th Annual Conference of the North American Chapter of the Association
for Computational Linguistics: Human Language Technologies .
Shervashidze, N., Schweitzer, P., Leeuwen, E. J. v., Mehlhorn, K., and Borgwardt, K. M. (2011). | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1012 | Weisfeiler-lehman graph kernels. Journal of Machine Learning Research , 12(Sep):2539{2561.
Silver, D., Huang, A., Maddison, C. J., Guez, A., Sifre, L., Van Den Driessche, G., Schrittwieser, J.,
Antonoglou, I., Panneershelvam, V., Lanctot, M., et al. (2016). Mastering the game of go with
deep neural networks and tree search. Nature , 529(7587):484{489.
34
Smolensky, P. (1990). Tensor product variable binding and the representation of symbolic structures
in connectionist systems. Articial Intelligence , 46(1-2):159{216.
Socher, R., Huval, B., Manning, C. D., and Ng, A. Y. (2012). Semantic compositionality through
recursive matrix-vector spaces. In Proceedings of the Joint Conference on Empirical Methods in
Natural Language Processing (EMNLP) and Computational Natural Language Learning (CNLL) ,
pages 1201{1211. Association for Computational Linguistics.
Socher, R., Lin, C. C., Manning, C., and Ng, A. Y. (2011a). Parsing natural scenes and natural | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1013 | Socher, R., Lin, C. C., Manning, C., and Ng, A. Y. (2011a). Parsing natural scenes and natural
language with recursive neural networks. In Proceedings of the 28th International Conference on
Machine Learning (ICML) , pages 129{136.
Socher, R., Pennington, J., Huang, E. H., Ng, A. Y., and Manning, C. D. (2011b). Semi-supervised
recursive autoencoders for predicting sentiment distributions. In Proceedings of the Conference
on Empirical Methods in Natural Language Processing (EMNLP) , pages 151{161. Association for
Computational Linguistics.
Socher, R., Perelygin, A., Wu, J., Chuang, J., Manning, C. D., Ng, A., and Potts, C. (2013).
Recursive deep models for semantic compositionality over a sentiment treebank. In Proceedings of
the Conference on Empirical Methods in Natural Language Processing (EMNLP) , pages 1631{1642.
Spelke, E. S., Breinlinger, K., Macomber, J., and Jacobson, K. (1992). Origins of knowledge.
Psychological review , 99(4):605. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1014 | Psychological review , 99(4):605.
Spelke, E. S. and Kinzler, K. D. (2007). Core knowledge. Developmental Science , 10(1):89{96.
Srivastava, N., Hinton, G., Krizhevsky, A., Sutskever, I., and Salakhutdinov, R. (2014). Dropout:
A simple way to prevent neural networks from overtting. The Journal of Machine Learning
Research , 15(1):1929{1958.
Sukhbaatar, S., Fergus, R., et al. (2016). Learning multiagent communication with backpropagation.
InAdvances in Neural Information Processing Systems , pages 2244{2252.
Sukhbaatar, S., Weston, J., Fergus, R., et al. (2015). End-to-end memory networks. In Advances in
Neural Information Processing Systems , pages 2440{2448.
Sutskever, I., Vinyals, O., and Le, Q. V. (2014). Sequence to sequence learning with neural networks.
InAdvances in Neural Information Processing Systems , pages 3104{3112. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1015 | InAdvances in Neural Information Processing Systems , pages 3104{3112.
Szegedy, C., Ioe, S., Vanhoucke, V., and Alemi, A. A. (2017). Inception-v4, inception-resnet
and the impact of residual connections on learning. In Proceedings of the AAAI Conference on
Articial Intelligence (AAAI) , volume 4, page 12.
Tai, K. S., Socher, R., and Manning, C. D. (2015). Improved semantic representations from
tree-structured long short-term memory networks. In Proceedings of the Annual Meeting of the
Association for Computational Linguistics (ACL) .
Tang, J., Qu, M., Wang, M., Zhang, M., Yan, J., and Mei, Q. (2015). Line: Large-scale information
network embedding. In Proceedings of the 24th International Conference on World Wide Web ,
pages 1067{1077. International World Wide Web Conferences Steering Committee.
Tenenbaum, J. B., Griths, T. L., and Kemp, C. (2006). Theory-based bayesian models of inductive
learning and reasoning. Trends in Cognitive Sciences , 10(7):309{318.
35 | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1016 | learning and reasoning. Trends in Cognitive Sciences , 10(7):309{318.
35
Tenenbaum, J. B., Kemp, C., Griths, T. L., and Goodman, N. D. (2011). How to grow a mind:
Statistics, structure, and abstraction. Science , 331(6022):1279{1285.
Toyer, S., Trevizan, F., Thiebaux, S., and Xie, L. (2017). Action schema networks: Generalised
policies with deep learning. In Proceedings of the AAAI Conference on Articial Intelligence
(AAAI) .
Ullman, T. D., Spelke, E., Battaglia, P., and Tenenbaum, J. B. (2017). Mind games: Game engines
as an architecture for intuitive physics. Trends in Cognitive Sciences , 21(9):649{665.
van Steenkiste, S., Chang, M., Gre, K., and Schmidhuber, J. (2018). Relational neural expectation
maximization: Unsupervised discovery of objects and their interactions. Proceedings of the
International Conference on Learning Representations (ICLR) . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1017 | maximization: Unsupervised discovery of objects and their interactions. Proceedings of the
International Conference on Learning Representations (ICLR) .
Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Kaiser, L., and
Polosukhin, I. (2017). Attention is all you need. In Advances in Neural Information Processing
Systems .
Veli ckovi c, P., Cucurull, G., Casanova, A., Romero, A., Li o, P., and Bengio, Y. (2018). Graph
attention networks. In Proceedings of the International Conference on Learning Representations
(ICLR) .
Wang, J. X., Kurth-Nelson, Z., Kumaran, D., Tirumala, D., Soyer, H., Leibo, J. Z., Hassabis, D.,
and Botvinick, M. (2018a). Prefrontal cortex as a meta-reinforcement learning system. Nature
neuroscience , page 1.
Wang, J. X., Kurth-Nelson, Z., Tirumala, D., Soyer, H., Leibo, J. Z., Munos, R., Blundell, C., | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1018 | Kumaran, D., and Botvinick, M. (2016). Learning to reinforcement learn. arXiv preprint
arXiv:1611.05763 .
Wang, T., Liao, R., Ba, J., and Fidler, S. (2018b). Nervenet: Learning structured policy with graph
neural networks. In Proceedings of the International Conference on Learning Representations
(ICLR) .
Wang, X., Girshick, R., Gupta, A., and He, K. (2018c). Non-local neural networks. In Proceedings
of the Conference on Computer Vision and Pattern Recognition (CVPR) .
Wang, Y., Sun, Y., Liu, Z., Sarma, S. E., Bronstein, M. M., and Solomon, J. M. (2018d). Dynamic
graph cnn for learning on point clouds. arXiv preprint arXiv:1801.07829 .
Watters, N., Zoran, D., Weber, T., Battaglia, P., Pascanu, R., and Tacchetti, A. (2017). Visual
interaction networks: Learning a physics simulator from video. In Advances in Neural Information
Processing Systems , pages 4542{4550. | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1019 | interaction networks: Learning a physics simulator from video. In Advances in Neural Information
Processing Systems , pages 4542{4550.
Wu, J., Lu, E., Kohli, P., Freeman, B., and Tenenbaum, J. (2017). Learning to see physics via
visual de-animation. In Advances in Neural Information Processing Systems , pages 152{163.
Yoon, K., Liao, R., Xiong, Y., Zhang, L., Fetaya, E., Urtasun, R., Zemel, R., and Pitkow, X.
(2018). Inference in probabilistic graphical models by graph neural networks. In Workshops at
the International Conference on Learning Representations (ICLR) .
You, J., Ying, R., Ren, X., Hamilton, W. L., and Leskovec, J. (2018). GraphRNN: A deep generative
model for graphs. arXiv preprint arXiv:1802.08773 .
36
Yuille, A. L. and Liu, C. (2018). Deep nets: What have they ever done for vision? arXiv preprint
arXiv:1805.04025 . | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1020 | arXiv:1805.04025 .
Zaheer, M., Kottur, S., Ravanbakhsh, S., Poczos, B., Salakhutdinov, R. R., and Smola, A. J. (2017).
Deep sets. In Advances in Neural Information Processing Systems , pages 3394{3404.
Zambaldi, V., Raposo, D., Santoro, A., Bapst, V., Li, Y., Babuschkin, I., Tuyls, K., Reichert, D.,
Lillicrap, T., Lockhart, E., Shanahan, M., Langston, V., Pascanu, R., Botvinick, M., Vinyals, O.,
and Battaglia, P. (2018). Relational deep reinforcement learning. arXiv preprint arXiv .
Zhang, A., Lerer, A., Sukhbaatar, S., Fergus, R., and Szlam, A. (2018). Composable planning with
attributes. arXiv preprint arXiv:1803.00512 .
Z ugner, D., Akbarnejad, A., and G unnemann, S. (2018). Adversarial Attacks on Neural Networks | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1021 | Z ugner, D., Akbarnejad, A., and G unnemann, S. (2018). Adversarial Attacks on Neural Networks
for Graph Data. arXiv preprint arXiv:1805.07984 .
37
Appendix: Formulations of additional models
In this appendix we give more examples of how published networks can t in the frame dened by
Equation 1.
Interaction networks
Interaction Networks (Battaglia et al., 2016; Watters et al., 2017) and the Neural Physics Engine
Chang et al. (2017) use a full GN but for the absence of the global to update the edge properties:
e(ek;vrk;vsk;u):=fe(ek;vrk;vsk) = NNe([ek;vrk;vsk])
v
e0
i;vi;u:=fv
e0
i;vi;u
= NNv
[ e0
i;vi;u]
e!v
E0
i:= =X
fk:rk=ige0
k
That work also included an extension to the above formulation which output global, rather than
per-node, predictions: | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1022 | fk:rk=ige0
k
That work also included an extension to the above formulation which output global, rather than
per-node, predictions:
e(ek;vrk;vsk;u):=fe(ek;vrk;vsk) = NNe([ek;vrk;vsk])
v
e0
i;vi;u:=fv
e0
i;vi;u
= NNv
[ e0
i;vi;u]
u
e0; v0;u:=fu
v0;u
= NNu
[ v0;u]
v!g
V0:= =X
iv0
i
Non-pairwise interactions
Gated Graph Sequence Neural Networks (GGS-NN) (Li et al., 2016) use a slightly generalized
formulation where each edge has an attached type tk2f1;::;Tg, and the updates are:
e((ek;tk);vrk;vsk;u):=fe(ek;vsk) = NNe;tk(vsk)
v
e0
i;vi;u:=fv
e0
i;vi | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1023 | v
e0
i;vi;u:=fv
e0
i;vi
= NNv
[ e0
i;vi]
e!v
E0
i:= =X
fk:rk=ige0
k
These updates are applied recurrently (the NNvis a GRU (Cho et al., 2014)), followed by a global
decoder which computes a weighted sum of embedded nal node states. Here each NNe;tkis a neural
network with specic parameters.
CommNet (Sukhbaatar et al., 2016) (in the slightly more general form described by (Hoshen,
2017)) uses:
e(ek;vrk;vsk;u):=fe(vsk) = NN e(vsk)
v
e0
i;vi;u:=fv
e0
i;vi
= NNv
[ e0
i;NNv0(vi)]
e!v
E0
i:= =1
jE0
ijX
fk:rk=ige0
k
38
Attention-based approaches | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1024 | E0
i:= =1
jE0
ijX
fk:rk=ige0
k
38
Attention-based approaches
The various attention-based approaches use a ewhich is factored into a scalar pairwise-interaction
function which returns the unnormalized attention term, denoted e(vrk;vsk)=a0
k, and a vectorvalued non-pairwise term, denoted e(vsk) =b0
k,
e(ek;vrk;vsk;u):=fe(vrk;vsk) = (e(vrk;vsk); e(vsk)) = (a0
k;b0
k) =e0
k
The single-headed self-attention (SA) in the Transformer architecture (Vaswani et al., 2017),
implements the non-local formulation as:
e(vrk;vsk) = exp (NN query(vrk)|NNkey(vsk))
e(vsk) = NN (vsk)
v
e0
i;vi;u:=fv
e0
i
= NNv
e0
i | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1025 | v
e0
i;vi;u:=fv
e0
i
= NNv
e0
i
where NNquery,NNkey, and NNare again neural network functions with dierent parameters and
possibly dierent architectures. They also use a multi-headed version which computes Nhparallel
e0h
iusing dierent NNquery
h,NNkey
h,NNh, wherehindexes the dierent parameters. These are
passed tofvand concatenated:
fv
f e0h
igh=1:::Nh
= NNv
[ e01
i;:::; e0Nh
i]
Vertex Attention Interaction Networks (Hoshen, 2017) are very similar to single-headed SA,
but use Euclidean distance for the attentional similarity metric, with shared parameters across the
attention inputs' embeddings, and also use the input node feature in the node update function,
e(vrk;vsk) = exp
kNN(vrk) NN(vsk)k2
e(vsk) = NN (vsk)
v | 1806.01261 | Relational inductive biases, deep learning, and graph networks | Artificial intelligence (AI) has undergone a renaissance recently, making
major progress in key domains such as vision, language, control, and
decision-making. This has been due, in part, to cheap data and cheap compute
resources, which have fit the natural strengths of deep learning. However, many
defining characteristics of human intelligence, which developed under much
different pressures, remain out of reach for current approaches. In particular,
generalizing beyond one's experiences--a hallmark of human intelligence from
infancy--remains a formidable challenge for modern AI.
The following is part position paper, part review, and part unification. We
argue that combinatorial generalization must be a top priority for AI to
achieve human-like abilities, and that structured representations and
computations are key to realizing this objective. Just as biology uses nature
and nurture cooperatively, we reject the false choice between
"hand-engineering" and "end-to-end" learning, and instead advocate for an
approach which benefits from their complementary strengths. We explore how
using relational inductive biases within deep learning architectures can
facilitate learning about entities, relations, and rules for composing them. We
present a new building block for the AI toolkit with a strong relational
inductive bias--the graph network--which generalizes and extends various
approaches for neural networks that operate on graphs, and provides a
straightforward interface for manipulating structured knowledge and producing
structured behaviors. We discuss how graph networks can support relational
reasoning and combinatorial generalization, laying the foundation for more
sophisticated, interpretable, and flexible patterns of reasoning. As a
companion to this paper, we have released an open-source software library for
building graph networks, with demonstrations of how to use them in practice. | http://arxiv.org/pdf/1806.01261 | [
"Peter W. Battaglia",
"Jessica B. Hamrick",
"Victor Bapst",
"Alvaro Sanchez-Gonzalez",
"Vinicius Zambaldi",
"Mateusz Malinowski",
"Andrea Tacchetti",
"David Raposo",
"Adam Santoro",
"Ryan Faulkner",
"Caglar Gulcehre",
"Francis Song",
"Andrew Ballard",
"Justin Gilmer",
"George Dahl",
"Ashish Vaswani",
"Kelsey Allen",
"Charles Nash",
"Victoria Langston",
"Chris Dyer",
"Nicolas Heess",
"Daan Wierstra",
"Pushmeet Kohli",
"Matt Botvinick",
"Oriol Vinyals",
"Yujia Li",
"Razvan Pascanu"
] | [
"cs.LG",
"cs.AI",
"stat.ML"
] | null | null | cs.LG | 20180604 | 20181017 | [] |
1806.01261 | 1026 |