You are on page 1of 20

Published as a conference paper at ICLR 2017

D EEP C ODER : L EARNING TO W RITE P ROGRAMS


Matej Balog Alexander L. Gaunt, Marc Brockschmidt,
Department of Engineering Sebastian Nowozin, Daniel Tarlow
University of Cambridge Microsoft Research

A BSTRACT
We develop a first line of attack for solving programming competition-style prob-
lems from input-output examples using deep learning. The approach is to train a
neural network to predict properties of the program that generated the outputs from
the inputs. We use the neural networks predictions to augment search techniques
from the programming languages community, including enumerative search and
an SMT-based solver. Empirically, we show that our approach leads to an order
of magnitude speedup over the strong non-augmented baselines and a Recurrent
Neural Network approach, and that we are able to solve problems of difficulty
comparable to the simplest problems on programming competition websites.

1 I NTRODUCTION
A dream of artificial intelligence is to build systems that can write computer programs. Recently,
there has been much interest in program-like neural network models (Graves et al., 2014; Weston
et al., 2015; Kurach et al., 2015; Joulin & Mikolov, 2015; Grefenstette et al., 2015; Sukhbaatar
et al., 2015; Neelakantan et al., 2016; Kaiser & Sutskever, 2016; Reed & de Freitas, 2016; Zaremba
et al., 2016; Graves et al., 2016), but none of these can write programs; that is, they do not generate
human-readable source code. Only very recently, Riedel et al. (2016); Bunel et al. (2016); Gaunt
et al. (2016) explored the use of gradient descent to induce source code from input-output examples
via differentiable interpreters, and Ling et al. (2016) explored the generation of source code from
unstructured text descriptions. However, Gaunt et al. (2016) showed that differentiable interpreter-
based program induction is inferior to discrete search-based techniques used by the programming
languages community. We are then left with the question of how to make progress on program
induction using machine learning techniques.
In this work, we propose two main ideas: (1) learn to induce programs; that is, use a corpus of
program induction problems to learn strategies that generalize across problems, and (2) integrate
neural network architectures with search-based techniques rather than replace them.
In more detail, we can contrast our approach to existing work on differentiable interpreters. In dif-
ferentiable interpreters, the idea is to define a differentiable mapping from source code and inputs
to outputs. After observing inputs and outputs, gradient descent can be used to search for a pro-
gram that matches the input-output examples. This approach leverages gradient-based optimization,
which has proven powerful for training neural networks, but each synthesis problem is still solved
independentlysolving many synthesis problems does not help to solve the next problem.
We argue that machine learning can provide significant value towards solving Inductive Program
Synthesis (IPS) by re-casting the problem as a big data problem. We show that training a neural
network on a large number of generated IPS problems to predict cues from the problem description
can help a search-based technique. In this work, we focus on predicting an order on the program
space and show how to use it to guide search-based techniques that are common in the programming
languages community. This approach has three desirable properties: first, we transform a difficult
search problem into a supervised learning problem; second, we soften the effect of failures of the
neural network by searching over program space rather than relying on a single prediction; and third,
the neural networks predictions are used to guide existing program synthesis systems, allowing us to
use and improve on the best solvers from the programming languages community. Empirically, we

Also affiliated with Max-Planck Institute for Intelligent Systems, Tubingen, Germany. Work done while
author was an intern at Microsoft Research.

1
Published as a conference paper at ICLR 2017

show orders-of-magnitude improvements over optimized standard search techniques and a Recurrent
Neural Network-based approach to the problem.
In summary, we define and instantiate a framework for using deep learning for program synthesis
problems like ones appearing on programming competition websites. Our concrete contributions are:

1. defining a programming language that is expressive enough to include real-world program-


ming problems while being high-level enough to be predictable from input-output examples;
2. models for mapping sets of input-output examples to program properties; and
3. experiments that show an order of magnitude speedup over standard program synthesis
techniques, which makes this approach feasible for solving problems of similar difficulty as
the simplest problems that appear on programming competition websites.

2 BACKGROUND ON I NDUCTIVE P ROGRAM S YNTHESIS


We begin by providing background on Inductive Program Synthesis, including a brief overview of
how it is typically formulated and solved in the programming languages community.
The Inductive Program Synthesis (IPS) problem is the following: given input-output examples,
produce a program that has behavior consistent with the examples.
Building an IPS system requires solving two problems. First, the search problem: to find consistent
programs we need to search over a suitable set of possible programs. We need to define the set
(i.e., the program space) and search procedure. Second, the ranking problem: if there are multiple
programs consistent with the input-output examples, which one do we return? Both of these problems
are dependent on the specifics of the problem formulation. Thus, the first important decision in
formulating an approach to program synthesis is the choice of a Domain Specific Language.

Domain Specific Languages (DSLs). DSLs are programming languages that are suitable for a
specialized domain but are more restrictive than full-featured programming languages. For example,
one might disallow loops or other control flow, and only allow string data types and a small number of
primitive operations like concatenation. Most of program synthesis research focuses on synthesizing
programs in DSLs, because full-featured languages like C++ enlarge the search space and complicate
synthesis. Restricted DSLs can also enable more efficient special-purpose search algorithms. For
example, if a DSL only allows concatenations of substrings of an input string, a dynamic program-
ming algorithm can efficiently search over all possible programs (Polozov & Gulwani, 2015). The
choice of DSL also affects the difficulty of the ranking problem. For example, in a DSL without if
statements, the same algorithm is applied to all inputs, reducing the number of programs consistent
with any set of input-output examples, and thus the ranking problem becomes easier. Of course, the
restrictiveness of the chosen DSL also determines which problems the system can solve at all.

Search Techniques. There are many techniques for searching for programs consistent with input-
output examples. Perhaps the simplest approach is to define a grammar and then enumerate all
derivations of the grammar, checking each one for consistency with the examples. This approach
can be combined with pruning based on types and other logical reasoning (Feser et al., 2015). While
simple, these approaches can be implemented efficiently, and they can be surprisingly effective.
In restricted domains such as the concatenation example discussed above, special-purpose algorithms
can be used. FlashMeta (Polozov & Gulwani, 2015) describes a framework for DSLs which allow
decomposition of the search problem, e.g., where the production of an output string from an input
string can be reduced to finding a program for producing the first part of the output and concatenating
it with a program for producing the latter part of the output string.
Another class of systems is based on Satisfiability Modulo Theories (SMT) solving. SMT combines
SAT-style search with theories like arithmetic and inequalities, with the benefit that theory-dependent
subproblems can be handled by special-purpose solvers. For example, a special-purpose solver can
easily find integers x, y such that x < y and y < 100 hold, whereas an enumeration strategy may
need to consider many values before satisfying the constraints. Many program synthesis engines
based on SMT solvers exist, e.g., Sketch (Solar-Lezama, 2008) and Brahma (Gulwani et al., 2011).
They convert the semantics of a DSL into a set of constraints between variables representing the

2
Published as a conference paper at ICLR 2017

program and the input-output values, and then call an SMT solver to find a satisfying setting of
the program variables. This approach shines when special-purpose reasoning can be leveraged, but
complex DSLs can lead to very large constraint problems where constructing and manipulating the
constraints can be a lot slower than an enumerative approach.
Finally, stochastic local search can be employed to search over program space, and there is a long
history of applying genetic algorithms to this problem. One of the most successful recent examples
is the STOKE super-optimization system (Schkufza et al., 2016), which uses stochastic local search
to find assembly programs that have the same semantics as an input program but execute faster.

Ranking. While we focus on the search problem in this work, we briefly mention the ranking
problem here. A popular choice for ranking is to choose the shortest program consistent with input-
output examples (Gulwani, 2016). A more sophisticated approach is employed by FlashFill (Singh
& Gulwani, 2015). It works in a manner similar to max-margin structured prediction, where known
ground truth programs are given, and the learning task is to assign scores to programs such that the
ground truth programs score higher than other programs that satisfy the input-output specification.

3 L EARNING I NDUCTIVE P ROGRAM S YNTHESIS (LIPS)

In this section we outline the general approach that we follow in this work, which we call Learning
Inductive Program Synthesis (LIPS). The details of our instantiation of LIPS appear in Sect. 4. The
components of LIPS are (1) a DSL specification, (2) a data-generation procedure, (3) a machine learn-
ing model that maps from input-output examples to program attributes, and (4) a search procedure
that searches program space in an order guided by the model from (3). The framework is related to
the formulation of Menon et al. (2013); the relationship and key differences are discussed in Sect. 6.

(1) DSL and Attributes. The choice of DSL is important in LIPS, just as it is in any program
synthesis system. It should be expressive enough to capture the problems that we wish to solve, but
restricted as much as possible to limit the difficulty of the search. In LIPS we additionally specify
an attribute function A that maps programs P of the DSL to finite attribute vectors a = A(P ).
(Attribute vectors of different programs need not have equal length.) Attributes serve as the link
between the machine learning and the search component of LIPS: the machine learning model
predicts a distribution q(a | E), where E is the set of input-output examples, and the search procedure
aims to search over programs P as ordered by q(A(P ) | E). Thus an attribute is useful if it is both
predictable from input-output examples, and if conditioning on its value significantly reduces the
effective size of the search space.
Possible attributes are the (perhaps position-dependent) presence or absence of high-level functions
(e.g., does the program contain or end in a call to S ORT). Other possible attributes include control
flow templates (e.g., the number of loops and conditionals). In the extreme case, one may set A
to the identity function, in which case the attribute is equivalent to the program; however, in our
experiments we find that performance is improved by choosing a more abstract attribute function.

(2) Data Generation. Step 2 is to generate a dataset ((P (n) , a(n) , E (n) ))N n=1 of programs P
(n)
in
(n) (n)
the chosen DSL, their attributes a , and accompanying input-output examples E . Different ap-
proaches are possible, ranging from enumerating valid programs in the DSL and pruning, to training
a more sophisticated generative model of programs in the DSL. The key in the LIPS formulation is
to ensure that it is feasible to generate a large dataset (ideally millions of programs).

(3) Machine Learning Model. The machine learning problem is to learn a distribution of at-
tributes given input-output examples, q(a | E). There is freedom to explore a large space of models,
so long as the input component can encode E, and the output is a proper distribution over attributes
(e.g., if attributes are a fixed-size binary vector, then a neural network with independent sigmoid
outputs is appropriate; if attributes are variable size, then a recurrent neural network output could be
used). Attributes are observed at training time, so training can use a maximum likelihood objective.

(4) Search. The aim of the search component is to interface with an existing solver, using the
predicted q(a | E) to guide the search. We describe specific approaches in the next section.

3
Published as a conference paper at ICLR 2017

4 D EEP C ODER

Here we describe DeepCoder, our instantiation of LIPS including a choice of DSL, a data generation
strategy, models for encoding input-output sets, and algorithms for searching over program space.

4.1 D OMAIN S PECIFIC L ANGUAGE AND ATTRIBUTES

We consider binary attributes indicating the presence or absence of high-level functions in the target
program. To make this effective, the chosen DSL needs to contain constructs that are not so low-level
that they all appear in the vast majority of programs, but at the same time should be common enough
so that predicting their occurrence from input-output examples can be learned successfully.
Following this observation, our DSL is loosely inspired by query languages such as SQL or LINQ,
where high-level functions are used in sequence to manipulate data. A program in our DSL is a
sequence of function calls, where the result of each call initializes a fresh variable that is either a
singleton integer or an integer array. Functions can be applied to any of the inputs or previously
computed (intermediate) variables. The output of the program is the return value of the last function
call, i.e., the last variable. See Fig. 1 for an example program of length T = 4 in our DSL.

a [int] An input-output example:


b F ILTER (<0) a Input:
c M AP (*4) b [-17, -3, 4, 11, 0, -5, -9, 13, 6, 6, -8, 11]
d S ORT c Output:
e R EVERSE d [-12, -20, -32, -36, -68]

Figure 1: An example program in our DSL that takes a single integer array as its input.

Overall, our DSL contains the first-order functions H EAD, L AST, TAKE, D ROP, ACCESS, M INIMUM,
M AXIMUM, R EVERSE, S ORT, S UM, and the higher-order functions M AP, F ILTER, C OUNT, Z IP -
W ITH, S CANL 1. Higher-order functions require suitable lambda functions for their behavior to be
fully specified: for M AP our DSL provides lambdas (+1), (-1), (*2), (/2), (*(-1)), (**2),
(*3), (/3), (*4), (/4); for F ILTER and C OUNT there are predicates (>0), (<0), (%2==0),
(%2==1) and for Z IP W ITH and S CANL 1 the DSL provides lambdas (+), (-), (*), M IN, M AX.
A description of the semantics of all functions is provided in Appendix F.
Note that while the language only allows linear control flow, many of its functions do perform
branching and looping internally (e.g., S ORT, C OUNT, ...). Examples of more sophisticated programs
expressible in our DSL, which were inspired by the simplest problems appearing on programming
competition websites, are shown in Appendix A.

4.2 DATA G ENERATION

To generate a dataset, we enumerate programs in the DSL, heuristically pruning away those with
easily detectable issues such as a redundant variable whose value does not affect the program output,
or, more generally, existence of a shorter equivalent program (equivalence can be overapproximated
by identical behavior on randomly or carefully chosen inputs). To generate valid inputs for a program,
we enforce a constraint on the output value bounding integers to some predetermined range, and then
propagate these constraints backward through the program to obtain a range of valid values for each
input. If one of these ranges is empty, we discard the program. Otherwise, input-output pairs can be
generated by picking inputs from the pre-computed valid ranges and executing the program to obtain
the output values. The binary attribute vectors are easily computed from the program source codes.

4.3 M ACHINE L EARNING M ODEL

Observe how the input-output data in Fig. 1 is informative of the functions appearing in the program:
the values in the output are all negative, divisible by 4, they are sorted in decreasing order, and they
happen to be multiples of numbers appearing in the input. Our aim is to learn to recognize such
patterns in the input-output examples, and to leverage them to predict the presence or absence of

4
Published as a conference paper at ICLR 2017

individual functions. We employ neural networks to model and learn the mapping from input-output
examples to attributes. We can think of these networks as consisting of two parts:

1. an encoder: a differentiable mapping from a set of M input-output examples generated by


a single program to a latent real-valued vector, and
2. a decoder: a differentiable mapping from the latent vector representing a set of M input-
output examples to predictions of the ground truth programs attributes.

For the encoder we use a simple feed-forward architecture. First, we represent the input and output
types (singleton or array) by a one-hot-encoding, and we pad the inputs and outputs to a maximum
length L with a special N ULL value. Second, each integer in the inputs and in the output is mapped
to a learned embedding vector of size E = 20. (The range of integers is restricted to a finite range
and each embedding is parametrized individually.) Third, for each input-output example separately,
we concatenate the embeddings of the input types, the inputs, the output type, and the output into a
single (fixed-length) vector, and pass this vector through H = 3 hidden layers containing K = 256
sigmoid units each. The third hidden layer thus provides an encoding of each individual input-output
example. Finally, for input-output examples in a set generated from the same program, we pool these
representations together by simple arithmetic averaging. See Appendix C for more details.
The advantage of this encoder lies in its simplicity, and we found it reasonably easy to train. A
disadvantage is that it requires an upper bound L on the length of arrays appearing in the input and
output. We confirmed that the chosen encoder architecture is sensible in that it performs empirically
at least as well as an RNN encoder, a natural baseline, which may however be more difficult to train.
DeepCoder learns to predict presence or absence of individual functions of the DSL. We shall see
this can already be exploited by various search techniques to large computational gains. We use a
decoder that pre-multiplies the encoding of input-output examples by a learned C K matrix, where
C = 34 is the number of functions in our DSL (higher-order functions and lambdas are predicted
independently), and treats the resulting C numbers as log-unnormalized probabilities (logits) of each
function appearing in the source code. Fig. 2 shows the predictions a trained neural network made
from 5 input-output examples for the program shown in Fig. 1.

MAXIMUM
(%2==1)
(%2==0)

MINIMUM
REVERSE

ZIPWITH
ACCESS

SCANL1

COUNT
FILTER

DROP
HEAD

SORT

TAKE
LAST
(**2)
(*-1)
(+1)

(>0)
(>0)

MAX

SUM
MAP
(*2)

(*3)

(*4)

MIN
(-1)

(/2)

(/3)

(/4)

*
-

.0 .0 .1 .0 .0 .0 .0 .0 1.0 .0 .0 1.0 .0 .2 .0 .0 1.0 1.0 1.0 .7 .0 .1 .0 .4 .0 .0 .1 .0 .2 .1 .0 .0 .0 .0

Figure 2: Neural network predicts the probability of each function appearing in the source code.

4.4 S EARCH

One of the central ideas of this work is to use a neural network to guide the search for a program
consistent with a set of input-output examples instead of directly predicting the entire source code.
This section briefly describes the search techniques and how they integrate the predicted attributes.

Depth-first search (DFS). We use an optimized version of DFS to search over programs with a
given maximum length T (see Appendix D for details). When the search procedure extends a partial
program by a new function, it has to try the functions in the DSL in some order. At this point DFS
can opt to consider the functions as ordered by their predicted probabilities from the neural network.

Sort and add enumeration. A stronger way of utilizing the predicted probabilities of functions
in an enumerative search procedure is to use a Sort and add scheme, which maintains a set of active
functions and performs DFS with the active function set only. Whenever the search fails, the next
most probable function (or several) are added to the active set and the search restarts with this larger
active set. Note that this scheme has the deficiency of potentially re-exploring some parts of the
search space several times, which could be avoided by a more sophisticated search procedure.

Sketch. Sketch (Solar-Lezama, 2008) is a successful SMT-based program synthesis tool from the
programming languages research community. While its main use case is to synthesize programs

5
Published as a conference paper at ICLR 2017

by filling in holes in incomplete source code so as to match specified requirements, it is flexible


enough for our use case as well. The function in each step and its arguments can be treated as
the holes, and the requirement to be satisfied is consistency with the provided set of input-output
examples. Sketch can utilize the neural network predictions in a Sort and add scheme as described
above, as the possibilities for each function hole can be restricted to the current active set.

2 . 2 (Feser et al., 2015) is a program synthesis tool from the programming languages community
that combines enumerative search with deduction to prune the search space. It is designed to infer
small functional programs for data structure manipulation from input-output examples, by combining
functions from a provided library. 2 can be used in our framework using a Sort and add scheme as
described above by choosing the library of functions according to the neural network predictions.

4.5 T RAINING L OSS F UNCTION

We use the negative cross entropy loss to train the neural network described in Sect. 4.3, so that its
predictions about each function can be interpreted as marginal probabilities. The LIPS framework
dictates learning q(a | E), the joint distribution of all attributes a given the input-output examples,
and it is not clear a priori how much DeepCoder loses by ignoring correlations between functions.
However, under the simplifying assumption that the runtime of searching for a program of length T
with C functions made available to a search routine is proportional to C T , the following result for
Sort and add procedures shows that their runtime can be optimized using marginal probabilities.
Lemma 1. For any fixed program length T , the expected total runtime of a Sort and add search
scheme can be upper bounded by a quantity that is minimized by adding the functions in the order of
decreasing true marginal probabilities.

Proof. Predicting source code functions from input-output examples can be seen as a multi-label
classification problem, where each set of input-output examples is associated with a set of relevant
labels (functions appearing in the ground truth source code). Dembczynski et al. (2010) showed
that in multi-label classification under a so-called Rank loss, it is Bayes optimal to rank the labels
according to their marginal probabilities. If the runtime of search with C functions is proportional
to C T , the total runtime of a Sort and add procedure can be monotonically transformed so that it is
upper bounded by this Rank loss. See Appendix E for more details.

5 E XPERIMENTS
In this section we report results from two categories of experiments. Our main experiments (Sect. 5.1)
show that the LIPS framework can lead to significant performance gains in solving IPS by demon-
strating such gains with DeepCoder. In Sect. 5.2 we illustrate the robustness of the method by
demonstrating a strong kind of generalization ability across programs of different lengths.

5.1 D EEP C ODER C OMPARED TO BASELINES

We trained a neural network as described in Sect. 4.3 to predict used functions from input-output
examples and constructed a test set of P = 500 programs, guaranteed to be semantically disjoint from
all programs on which the neural network was trained (similarly to the equivalence check described
in Sect. 4.2, we have ensured that all test programs behave differently from all programs used during
training on at least one input). For each test program we generated M = 5 input-output examples
involving integers of magnitudes up to 256, passed the examples to the trained neural network, and
fed the obtained predictions to the search procedures from Sect. 4.4. We also considered a RNN-based
decoder generating programs using beam search (see Sect. 5.3 for details). To evaluate DeepCoder,
we then recorded the time the search procedures needed to find a program consistent with the M
input-output examples. As a baseline, we also ran all search procedures using a simple prior as
function probabilities, computed from their global incidence in the program corpus.
In the first, smaller-scale experiment (program search space size 2 106 ) we trained the neural
network on programs of length T = 3, and the test programs were of the same length. Table 1 shows
the per-task timeout required such that a solution could be found for given proportions of the test
tasks (in time less than or equal to the timeout). For example, in a hypothetical test set with 4 tasks

6
Published as a conference paper at ICLR 2017

Table 1: Search speedups on programs of length T = 3 due to using neural network predictions.

Timeout needed DFS Enumeration 2 Sketch Beam


to solve 20% 40% 60% 20% 40% 60% 20% 40% 60% 20% 40% 20%
Baseline 41ms 126ms 314ms 80ms 335ms 861ms 18.9s 49.6s 84.2s >103 s >103 s >103 s
DeepCoder 2.7ms 33ms 110ms 1.3ms 6.1ms 27ms 0.23s 0.52s 13.5s 2.13s 455s 292s
Speedup 15.2 3.9 2.9 62.2 54.6 31.5 80.4 94.6 6.2 >467 >2.2 >3.4

and runtimes of 3s, 2s, 1s, 4s, the timeout required to solve 50% of tasks would be 2s. More detailed
experimental results are discussed in Appendix B.
In the main experiment, we tackled a large-scale problem of searching for programs consistent with
input-output examples generated from programs of length T = 5 (search space size on the order of
1010 ), supported by a neural network trained with programs of shorter length T = 4. Here, we only
consider P = 100 programs for reasons of computational efficiency, after having verified that this
does not significantly affect the results in Table 1. The table in Fig. 3a shows significant speedups
for DFS, Sort and add enumeration, and 2 with Sort and add enumeration, the search techniques
capable of solving the search problem in reasonable time frames. Note that Sort and add enumeration
without the neural network (using prior probabilities of functions) exceeded the 104 second timeout
in two cases, so the relative speedups shown are crude lower bounds.
3
Ttrain :
10 4
Timeout needed DFS Enumeration 2
10 2

Speedup
3
to solve 20% 40% 60% 20% 40% 60% 20%
2
Baseline 163s 2887s 6832s 8181s >104 s >104 s 463s 10 1
1
DeepCoder 24s 514s 2654s 9s 264s 4640s 48s
10 0 none
Speedup 6.8 5.6 2.6 907 >37 >2 9.6 1 2 3 4 5
(a)
Length of test programs Ttest
(b)

Figure 3: Search speedups on programs of length T = 5 and influence of length of training programs.

We hypothesize that the substantially larger performance gains on Sort and add schemes as compared
to gains on DFS can be explained by the fact that the choice of attribute function (predicting presence
of functions anywhere in the program) and learning objective of the neural network are better matched
to the Sort and add schemes. Indeed, a more appropriate attribute function for DFS would be one
that is more informative of the functions appearing early in the program, since exploring an incorrect
first function is costly with DFS. On the other hand, the discussion in Sect. 4.5 provides theoretical
indication that ignoring the correlations between functions is not cataclysmic for Sort and add
enumeration, since a Rank loss that upper bounds the Sort and add runtime can still be minimized.
In Appendix G we analyse the performance of the neural networks used in these experiments, by
investigating which attributes (program instructions) tend to be difficult to distinguish from each
other.

5.2 G ENERALIZATION ACROSS PROGRAM LENGTHS

To investigate the encoders generalization ability across programs of different lengths, we trained
a network to predict used functions from input-output examples that were generated from programs
of length Ttrain {1, . . . , 4}. We then used each of these networks to predict functions on 5 test sets
containing input-output examples generated from programs of lengths Ttest {1, . . . , 5}, respectively.
The test programs of a given length T were semantically disjoint from all training programs of the
same length T and also from all training and test programs of shorter lengths T 0 < T .
For each of the combinations of Ttrain and Ttest , Sort and add enumerative search was run both with
and without using the neural networks predictions (in the latter case using prior probabilities) until
it solved 20% of the test set tasks. Fig. 3b shows the relative speedup of the solver having access to
predictions from the trained neural networks. These results indicate that the neural networks are able
to generalize beyond programs of the same length that they were trained on. This is partly due to the

7
Published as a conference paper at ICLR 2017

search procedure on top of their predictions, which has the opportunity to correct for the presence of
functions that the neural network failed to predict. Note that a sequence-to-sequence model trained
on programs of a fixed length could not be expected to exhibit this kind of generalization ability.

5.3 A LTERNATIVE MODELS

Encoder We evaluated replacing the feed-forward architecture encoder (Sect. 4.3) with an RNN, a
natural baseline. Using a GRU-based RNN we were able to achieve results almost as good as using
the feed-forward architecture, but found the RNN encoder more difficult to train.

Decoder We also considered a purely neural network-based approach, where an RNN decoder
is trained to predict the entire program token-by-token. We combined this with our feed-forward
encoder by initializing the RNN using the pooled final layer of the encoder. We found it substantially
more difficult to train an RNN decoder as compared to the independent binary classifiers employed
above. Beam search was used to explore likely programs predicted by the RNN, but it only lead to a
solution comparable with the other techniques when searching for programs of lengths T 2, where
the search space size is very small (on the order of 103 ). Note that using an RNN for both the encoder
and decoder corresponds to a standard sequence-to-sequence model. However, we do do not rule out
that a more sophisticated RNN decoder or training procedure could be possibly more successful.

6 R ELATED W ORK
Machine Learning for Inductive Program Synthesis. There is relatively little work on using
machine learning for programming by example. The most closely related work is that of Menon
et al. (2013), in which a hand-coded set of features of input-output examples are used as clues.
When a clue appears in the input-output examples (e.g., the output is a permutation of the input),
it reweights the probabilities of productions in a probabilistic context free grammar by a learned
amount. This work shares the idea of learning to guide the search over program space conditional on
input-output examples. One difference is in the domains. Menon et al. (2013) operate on short string
manipulation programs, where it is arguably easier to hand-code features to recognize patterns in the
input-output examples (e.g., if the outputs are always permutations or substrings of the input). Our
work shows that there are strong cues in patterns in input-output examples in the domain of numbers
and lists. However, the main difference is the scale. Menon et al. (2013) learns from a small (280
examples), manually-constructed dataset, which limits the capacity of the machine learning model
that can be trained. Thus, it forces the machine learning component to be relatively simple. Indeed,
Menon et al. (2013) use a log-linear model and rely on hand-constructed features. LIPS automatically
generates training data, which yields datasets with millions of programs and enables high-capacity
deep learning models to be brought to bear on the problem.

Learning Representations of Program State. Piech et al. (2015) propose to learn joint embed-
dings of program states and programs to automatically extend teacher feedback to many similar
programs in the MOOC setting. This work is similar in that it considers embedding program states,
but the domain is different, and it otherwise specifically focuses on syntactic differences between
semantically equivalent programs to provide stylistic feedback. Li et al. (2016) use graph neural
networks (GNNs) to predict logical descriptions from program states, focusing on data structure
shapes instead of numerical and list data. Such GNNs may be a suitable architecture to encode states
appearing when extending our DSL to handle more complex data structures.

Learning to Infer. Very recently, Alemi et al. (2016) used neural sequence models in tandem with
an automated theorem prover. Similar to our Sort and Add strategy, a neural network component
is trained to select premises that the theorem prover can use to prove a theorem. A recent exten-
sion (Loos et al., 2017) is similar to our DFS enumeration strategy and uses a neural network to guide
the proof search at intermediate steps. The main differences are in the domains, and that they train
on an existing corpus of theorems. More broadly, if we view a DSL as defining a model and search
as a form of inference algorithm, then there is a large body of work on using discriminatively-trained
models to aid inference in generative models. Examples include Dayan et al. (1995); Kingma &
Welling (2014); Shotton et al. (2013); Stuhlmuller et al. (2013); Heess et al. (2013); Jampani et al.
(2015).

8
Published as a conference paper at ICLR 2017

7 D ISCUSSION AND F UTURE W ORK


We have presented a framework for improving IPS systems by using neural networks to translate cues
in input-output examples to guidance over where to search in program space. Our empirical results
show that for many programs, this technique improves the runtime of a wide range of IPS baselines
by 1-3 orders. We have found several problems in real online programming challenges that can be
solved with a program in our language, which validates the relevance of the class of problems that
we have studied in this work. In sum, this suggests that we have made significant progress towards
being able to solve programming competition problems, and the machine learning component plays
an important role in making it tractable.
There remain some limitations, however. First, the programs we can synthesize are only the simplest
problems on programming competition websites and are simpler than most competition problems.
Many problems require more complex algorithmic solutions like dynamic programming and search,
which are currently beyond our reach. Our chosen DSL currently cannot express solutions to many
problems. To do so, it would need to be extended by adding more primitives and allow for more
flexibility in program constructs (such as allowing loops). Second, we currently use five input-output
examples with relatively large integer values (up to 256 in magnitude), which are probably more
informative than typical (smaller) examples. While we remain optimistic about LIPSs applicability as
the DSL becomes more complex and the input-output examples become less informative, it remains
to be seen what the magnitude of these effects are as we move towards solving large subsets of
programming competition problems.
We foresee many extensions of DeepCoder. We are most interested in better data generation pro-
cedures by using generative models of source code, and to incorporate natural language problem
descriptions to lessen the information burden required from input-output examples. In sum, Deep-
Coder represents a promising direction forward, and we are optimistic about the future prospects of
using machine learning to synthesize programs.

ACKNOWLEDGMENTS
The authors would like to express their gratitude to Rishabh Singh and Jack Feser for their valuable
guidance and help on using the Sketch and 2 program synthesis systems.

R EFERENCES
Alex A. Alemi, Francois Chollet, Geoffrey Irving, Christian Szegedy, and Josef Urban. DeepMath -
deep sequence models for premise selection. In Proocedings of the 29th Conference on Advances
in Neural Information Processing Systems (NIPS), 2016.
Rudy R Bunel, Alban Desmaison, Pawan K Mudigonda, Pushmeet Kohli, and Philip Torr. Adaptive
neural compilation. In Proceedings of the 29th Conference on Advances in Neural Information
Processing Systems (NIPS), 2016.
Peter Dayan, Geoffrey E Hinton, Radford M Neal, and Richard S Zemel. The Helmholtz machine.
Neural computation, 7(5):889904, 1995.
Krzysztof Dembczynski, Willem Waegeman, Weiwei Cheng, and Eyke Hullermeier. On label de-
pendence and loss minimization in multi-label classification. Machine Learning, 88(1):545,
2012.
Krzysztof J. Dembczynski, Weiwei Cheng, and Eyke Hllermeier. Bayes optimal multilabel classifi-
cation via probabilistic classifier chains. In Proceedings of the 27th International Conference on
Machine Learning (ICML), 2010.
John K. Feser, Swarat Chaudhuri, and Isil Dillig. Synthesizing data structure transformations from
input-output examples. In Proceedings of the 36th ACM SIGPLAN Conference on Programming
Language Design and Implementation (PLDI), 2015.
Alexander L. Gaunt, Marc Brockschmidt, Rishabh Singh, Nate Kushman, Pushmeet Kohli, Jonathan
Taylor, and Daniel Tarlow. Terpret: A probabilistic programming language for program induction.
CoRR, abs/1608.04428, 2016. URL http://arxiv.org/abs/1608.04428.

9
Published as a conference paper at ICLR 2017

Alex Graves, Greg Wayne, and Ivo Danihelka. Neural Turing machines. CoRR, abs/1410.5401, 2014.
URL http://arxiv.org/abs/1410.5401.
Alex Graves, Greg Wayne, Malcolm Reynolds, Tim Harley, Ivo Danihelka, Agnieszka Grabska-
Barwinska, Sergio Gomez Colmenarejo, Edward Grefenstette, Tiago Ramalho, John Agapiou,
et al. Hybrid computing using a neural network with dynamic external memory. Nature, 2016.
Edward Grefenstette, Karl Moritz Hermann, Mustafa Suleyman, and Phil Blunsom. Learning to
transduce with unbounded memory. In Proceedings of the 28th Conference on Advances in Neural
Information Processing Systems (NIPS), 2015.
Sumit Gulwani. Programming by examples: Applications, algorithms, and ambiguity resolution. In
Proceedings of the 8th International Joint Conference on Automated Reasoning (IJCAR), 2016.
Sumit Gulwani, Susmit Jha, Ashish Tiwari, and Ramarathnam Venkatesan. Synthesis of loop-free
programs. In Proceedings of the 32nd ACM SIGPLAN Conference on Programming Language
Design and Implementation (PLDI), 2011.
Nicolas Heess, Daniel Tarlow, and John Winn. Learning to pass expectation propagation messages.
In Proceedings of the 26th Conference on Advances in Neural Information Processing Systems
(NIPS), 2013.
Varun Jampani, Sebastian Nowozin, Matthew Loper, and Peter V Gehler. The informed sampler: A
discriminative approach to Bayesian inference in generative computer vision models. Computer
Vision and Image Understanding, 136:3244, 2015.
Armand Joulin and Tomas Mikolov. Inferring algorithmic patterns with stack-augmented recurrent
nets. In Proceedings of the 28th Conference on Advances in Neural Information Processing
Systems (NIPS), 2015.
ukasz Kaiser and Ilya Sutskever. Neural GPUs learn algorithms. In Proceedings of the 4th Interna-
tional Conference on Learning Representations, 2016.
Diederik P Kingma and Max Welling. Stochastic gradient VB and the variational auto-encoder. In
Proceedings of the 2nd International Conference on Learning Representations (ICLR), 2014.
Karol Kurach, Marcin Andrychowicz, and Ilya Sutskever. Neural random-access machines. In
Proceedings of the 4th International Conference on Learning Representations 2016, 2015.
Yujia Li, Daniel Tarlow, Marc Brockschmidt, and Richard S. Zemel. Gated graph sequence neural
networks. In Proceedings of the 4th International Conference on Learning Representations (ICLR),
2016.
Wang Ling, Edward Grefenstette, Karl Moritz Hermann, Tomas Kocisky, Andrew Senior, Fumin
Wang, and Phil Blunsom. Latent predictor networks for code generation. In Proceedings of the
54th Annual Meeting of the Association for Computational Linguistics, 2016.
Sarah M. Loos, Geoffrey Irving, Christian Szegedy, and Cezary Kaliszyk. Deep network guided
proof search. CoRR, abs/1701.06972, 2017. URL http://arxiv.org/abs/1701.06972.
Aditya Krishna Menon, Omer Tamuz, Sumit Gulwani, Butler W Lampson, and Adam Kalai. A
machine learning framework for programming by example. In Proceedings of the International
Conference on Machine Learning (ICML), 2013.
Arvind Neelakantan, Quoc V. Le, and Ilya Sutskever. Neural programmer: Inducing latent pro-
grams with gradient descent. In Proceedings of the 4th International Conference on Learning
Representations (ICLR), 2016.
Chris Piech, Jonathan Huang, Andy Nguyen, Mike Phulsuksombati, Mehran Sahami, and Leonidas J.
Guibas. Learning program embeddings to propagate feedback on student code. In Proceedings of
the 32nd International Conference on Machine Learning (ICML), 2015.
Oleksandr Polozov and Sumit Gulwani. FlashMeta: a framework for inductive program synthe-
sis. In Proceedings of the International Conference on Object-Oriented Programming, Systems,
Languages, and Applications (OOPSLA), 2015.

10
Published as a conference paper at ICLR 2017

Scott E. Reed and Nando de Freitas. Neural programmer-interpreters. In Proceedings of the 4th
International Conference on Learning Representations (ICLR), 2016.
Sebastian Riedel, Matko Bosnjak, and Tim Rocktaschel. Programming with a differentiable forth
interpreter. CoRR, abs/1605.06640, 2016. URL http://arxiv.org/abs/1605.06640.
Eric Schkufza, Rahul Sharma, and Alex Aiken. Stochastic program optimization. Commununications
of the ACM, 59(2):114122, 2016.
Jamie Shotton, Toby Sharp, Alex Kipman, Andrew Fitzgibbon, Mark Finocchio, Andrew Blake, Mat
Cook, and Richard Moore. Real-time human pose recognition in parts from single depth images.
Communications of the ACM, 56(1):116124, 2013.
Rishabh Singh and Sumit Gulwani. Predicting a correct program in programming by example. In
Proceedings of the 27th Conference on Computer Aided Verification (CAV), 2015.
Armando Solar-Lezama. Program Synthesis By Sketching. PhD thesis, EECS Dept., UC Berkeley,
2008.
Andreas Stuhlmuller, Jessica Taylor, and Noah D. Goodman. Learning stochastic inverses. In Pro-
ceedings of the 26th Conference on Advances in Neural Information Processing Systems (NIPS),
2013.
Sainbayar Sukhbaatar, Arthur Szlam, Jason Weston, and Rob Fergus. End-to-end memory networks.
In Proceedings of the 28th Conference on Advances in Neural Information Processing Systems
(NIPS), 2015.
Jason Weston, Sumit Chopra, and Antoine Bordes. Memory networks. In Proceedings of the 3rd
International Conference on Learning Representations (ICLR), 2015.
Wojciech Zaremba, Tomas Mikolov, Armand Joulin, and Rob Fergus. Learning simple algorithms
from examples. In Proceedings of the 33nd International Conference on Machine Learning
(ICML), 2016.

11
Published as a conference paper at ICLR 2017

A E XAMPLE P ROGRAMS

This section shows example programs in our Domain Specific Language (DSL), together with input-
output examples and short descriptions. These programs have been inspired by simple tasks appearing
on real programming competition websites, and are meant to illustrate the expressive power of our
DSL.

Program 0: Input-output example: Description:


k int Input: A new shop near you is selling n paintings.
b [int] 2, [3 5 4 7 5] You have k < n friends and you would
c S ORT b Output: like to buy each of your friends a painting
d TAKE k c [7] from the shop. Return the minimal amount
e S UM d of money you will need to spend.

Description:
Program 1: Input-output example: In soccer leagues, match winners are
w [int] Input: awarded 3 points, losers 0 points, and both
t [int] [6 2 4 7 9], teams get 1 point in the case of a tie. Com-
c M AP (*3) w [5 3 6 1 0] pute the number of points awarded to the
d Z IP W ITH (+) c t Output: winner of a league given two arrays w, t of
e M AXIMUM d 27 the same length, where w[i] (resp. t[i]) is the
number of times team i won (resp. tied).

Program 2: Input-output example: Description:


a [int] Input: Alice and Bob are comparing their results in
b [int] [6 2 4 7 9], a recent exam. Given their marks per ques-
c Z IP W ITH (-) b a [5 3 2 1 0] tion as two arrays a and b, count on how
d C OUNT (>0) c Output: many questions Alice got more points than
4 Bob.

Program 3: Input-output example: Description:


h [int] Input: Perditia is very peculiar about her garden
b S CANL 1 M IN h [8 5 7 2 5] and wants that the trees standing in a row are
c Z IP W ITH (-) h b Output: all of non-increasing heights. Given the tree
d F ILTER (>0) c 5 heights in centimeters in order of the row as
e S UM d an array h, compute how many centimeters
she needs to trim the trees in total.

Description:
Program 4: Input-output example: Xavier and Yasmine are laying sticks to form
x [int] Input: non-overlapping rectangles on the ground.
y [int] [7 3 8 2 5], They both have fixed sets of pairs of sticks
c S ORT x [2 8 9 1 3] of certain lengths (represented as arrays x
d S ORT y Output: and y of numbers). Xavier only lays sticks
e R EVERSE d 79 parallel to the x axis, and Yasmine lays sticks
f Z IP W ITH (*) d e
only parallel to y axis. Compute the area
g S UM f
their rectangles will cover at least.

Description:
A sequence called Billy is looking into the
Program 5: Input-output example: mirror, wondering how much weight it could
a [int] Input: lose by replacing any of its elements by their
b R EVERSE a [3 7 5 2 8] mirror images. Given a description of Billy
c Z IP W ITH M IN a b Output: as an array b of length n, return an array c
[3 2 5 2 3] of minimal sum where each element c[i] is
either b[i] or its mirror image b[n i 1].

12
Published as a conference paper at ICLR 2017

Program 6: Description:
IO example:
t [int] Umberto has a large collection of ties and match-
Input:
p [int] ing pocket squarestoo large, his wife saysand he
[4 8 11 2],
c M AP (-1) t needs to sell one pair. Given their values as arrays t
[2 3 4 1]
d M AP (-1) p and p, assuming that he sells the cheapest pair, and
Output:
e Z IP W ITH (+) c d selling costs 2, how much will he lose from the sale?
1
f M INIMUM e

Description:
Zack always promised his n friends to buy them
candy, but never did. Now he won the lottery
Program 7: IO example: and counts how often and how much candy he
s [int] Input: promised to his friends, obtaining arrays p (num-
p [int] [4 7 2 3], ber of promises) and s (number of promised sweets).
c S CANL 1 (+) p [2 1 3 1] He announces that to repay them, he will buy
d Z IP W ITH (*) s c Output: s[1]+s[2]+...+s[n] pieces of candy for the
e S UM d 62 first p[1] days, then s[2]+s[3]+...+s[n] for
p[2] days, and so on, until he has fulfilled all
promises. How much candy will he buy in total?

Description:
Vivian loves rearranging things. Most of all, when
she sees a row of heaps, she wants to make sure that
each heap has more items than the one to its left. She
Program 8: IO example: is also obsessed with efficiency, so always moves the
s [int] Input: least possible number of items. Her dad really dislikes
b R EVERSE s [1 2 4 5 7] if she changes the size of heaps, so she only moves
c Z IP W ITH (-) b s Output: single items between them, making sure that the set of
d F ILTER (>0) c 9 sizes of the heaps is the same as at the start; they are
e S UM d only in a different order. When you come in, you see
heaps of sizes (of course, sizes strictly monotonically
increasing) s[0], s[1], ... s[n]. What is
the maximal number of items that Vivian could have
moved?

Fig. 4 shows the predictions made by a neural network trained on programs of length T = 4 that
were ensured to be semantically disjoint from all 9 example programs shown in this section. For each
task, the neural network was provided with 5 input-output examples.
MAXIMUM
(%2==1)
(%2==0)

MINIMUM
REVERSE

ZIPWITH
ACCESS

SCANL1

COUNT
FILTER

DROP
HEAD

SORT

TAKE
LAST
(**2)
(*-1)
(+1)

(>0)
(<0)

MAX

SUM
MAP
(*2)

(*3)

(*4)

MIN
(-1)

(/2)

(/3)

(/4)

*
-

0: SORT b | TAKE a c | SUM d .0 .2 .0 .1 .4 .0 .0 .2 .0 .1 .0 .2 .1 .0 .1 .0 .3 .4 .2 .1.5 .2 .2 .6 .5 .2 .4 .0 .9 .1 .0 .1 .0 1.0


1: MAP (*3) a | ZIPWITH + b c | MAXIMUM d .1 .1 .1 .1 .0 .0 1.0 .0 .1 .0 .2 .1 .1 .1 .0 .3 1.0 .2 .1 .1
.0 .0 .1 1.0 .0 .6 .6 .0 .1 .1 .2 .0 .9 .0
2: ZIPWITH - b a | COUNT (>0) c .1 .2 .0 .1 .0 .0 .0 .1 .0 .1 .2 .2 .3 .3 .0 .0 .6 .0 .1 .1.0 .0 .0 1.0 .3 .4 .5 .0 .5 .5 1.0 .0 .0 .0
3: SCANL1 MIN a | ZIPWITH - a b | FILTER (>0) c | SUM d .3 .1 .1 .1 .1 .0 .0 .0 .0 .0 .1 .0 .0 .0 .0 .0 .6 .2 .1 .1.0 .0 .0 1.0 .3 .3 .3 .1 .2 .7 .0 .0 .1 1.0
4: SORT a | SORT b | REVERSE d | ZIPWITH * d e | SUM f .0 .0 .1 .4 .1 .4 .0 .0 .2 .0 .0 .2 .0 .2 .1 .2 .9 .2 .1 .0.0 .0 .4 .6 .2 .2 .3 .3 .4 .1 .2 .4 .0 .4
5: REVERSE a | ZIPWITH MIN a b .2 .2 .0 .2 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .9 .0 .0 1.0
.0 .0 .0 1.0 .0 .2 .0 .0 1.0 .1 .0 .0 .0 .0
6: MAP (-1) a | MAP (-1) b | ZIPWITH + c d | MINIMUM e .1 .1 .0 .0 .0 .0 .0 .0 .0 .0 .0 .2 .2 .2 .7 .0 .3 .3 .1 .0.0 .0 .0 1.0 .1 .9 .1 .0 .7 .2 .1 .8 .0 .0
7: SCANL1 + b | ZIPWITH * a c | SUM d .0 .0 .0 .0 .0 .1 .0 .0 .1 .0 .1 .1 .1 .1 .0 .1 .4 .1 .0 .0 .0 .0 .0 1.0 .8 .5 .4 1.0 .1 .0 .2 .0 .1 .7
8: REVERSE a | ZIPWITH - b a | FILTER (>0) c | SUM d .2 .1 .0 .1 .1 .0 .0 .1 .0 .1 .1 .1 .1 .0 .0 .0 .5 .5 .1 .0 .0 .0 .0 1.0 .4 .4 .5 .0 .3 .6 .0 .0 .1 1.0

Figure 4: Predictions of a neural network on the 9 example programs described in this section.
Numbers in squares would ideally be close to 1 (function is present in the ground truth source code),
whereas all other numbers should ideally be close to 0 (function is not needed).

B E XPERIMENTAL R ESULTS
Results presented in Sect. 5.1 showcased the computational speedups obtained from the LIPS frame-
work (using DeepCoder), as opposed to solving each program synthesis problem with only the

13
Published as a conference paper at ICLR 2017

information about global incidence of functions in source code available. For completeness, here we
show plots of raw computation times of each search procedure to solve a given number of problems.
Fig. 5 shows the computation times of DFS, of Enumerative search with a Sort and add scheme, of
the 2 and Sketch solvers with a Sort and add scheme, and of Beam search, when searching for a
program consistent with input-output examples generated from P = 500 different test programs of
length T = 3. As discussed in Sect. 5.1, these test programs were ensured to be semantically disjoint
from all programs used to train the neural networks, as well as from all programs of shorter length
(as discussed in Sect. 4.2).

500
400
DFS: using neural network
Programs solved

DFS: using prior order


300 L2: Sort and add using neural network
200 L2: Sort and add in prior order
100 Enumeration: Sort and add using neural network
0 -4 Enumeration: Sort and add in prior order
10 10 -3 10 -2 10 -1 10 0 10 1 10 2 10 3 Beam search
Solver computation time [s]
Sketch: Sort and add using neural network
Sketch: Sort and add in prior order

Figure 5: Number of test problems solved versus computation time.

The steps in the results for Beam search are due to our search strategy, which doubles the size of
the considered beam until reaching the timeout (of 1000 seconds) and thus steps occur whenever
the search for a beam of size 2k is finished. For 2 , we observed that no solution for a given set of
allowed functions was ever found after about 5 seconds (on the benchmark machines), but that 2
continued to search. Hence, we introduced a hard timeout after 6 seconds for all but the last iterations
of our Sort and add scheme.
Fig. 6 shows the computation times of DFS, Enumerative search with a Sort and add scheme, and
2 with a Sort and add scheme when searching for programs consistent with input-output examples
generated from P = 100 different test programs of length T = 5. The neural network was trained
on programs of length T = 4.

100
80
DFS: using neural network
Programs solved

DFS: using prior order


60 L2: Sort and add using neural network
40 L2: Sort and add in prior order
20 Enumeration: Sort and add using neural network
0 -4 Enumeration: Sort and add in prior order
10 10 -3 10 -2 10 -1 10 0 10 1 10 2 10 3 10 4
Solver computation time [s]

Figure 6: Number of test problems solved versus computation time.

C T HE N EURAL N ETWORK

As briefly described in Sect. 4.3, we used the following simple feed-forward architecture encoder:

For each input-output example in the set generated from a single ground truth program:
Pad arrays appearing in the inputs and in the output to a maximum length L = 20 with
a special N ULL value.
Represent the type (singleton integer or integer array) of each input and of the output
using a one-hot-encoding vector. Embed each integer in the valid integer range (256
to 255) using a learned embedding into E = 20 dimensional space. Also learn an
embedding for the padding N ULL value.

14
Published as a conference paper at ICLR 2017

Concatenate the representations of the input types, the embeddings of integers in the
inputs, the representation of the output type, and the embeddings of integers in the
output into a single (fixed-length) vector.
Pass this vector through H = 3 hidden layers containing K = 256 sigmoid units each.
Pool the last hidden layer encodings of each input-output example together by simple arith-
metic averaging.

Fig. 7 shows a schematic drawing of this encoder architecture, together with the decoder that performs
independent binary classification for each function in the DSL, indicating whether or not it appears
in the ground truth source code.

Attribute Predictions
Sigmoids

Final Activations

Pooled

Hiddens 3

Hiddens 2

Hiddens 1

State Embeddings

Program State
Inputs 1 Outputs 1 Inputs 5 Outputs 5

Figure 7: Schematic representation of our feed-forward encoder, and the decoder.

While DeepCoder learns to embed integers into a E = 20 dimensional space, we built the system up
gradually, starting with a E = 2 dimensional space and only training on programs of length T = 1.
Such a small scale setting allowed easier investigation of the workings of the neural network, and
indeed Fig. 8 below shows a learned embedding of integers in R2 . The figure demonstrates that
the network has learnt the concepts of number magnitude, sign (positive or negative) and evenness,
presumably due to F ILTER (>0), F ILTER (<0), F ILTER (%2==0) and F ILTER (%2==1) all being
among the programs on which the network was trained.

D D EPTH -F IRST S EARCH

We use an optimized C++ implementation of depth-first search (DFS) to search over programs with
a given maximum length T . In depth-first search, we start by choosing the first function (and its
arguments) of a potential solution program, and then recursively consider all ways of filling in the
rest of the program (up to length T ), before moving on to a next choice of first instruction (if a
solution has not yet been found).
A program is considered a solution if it is consistent with all M = 5 provided input-output examples.
Note that this requires evaluating all candidate programs on the M inputs and checking the results for
equality with the provided M respective outputs. Our implementation of DFS exploits the sequential
structure of programs in our DSL by caching the results of evaluating all prefixes of the currently
considered program on the example inputs, thus allowing efficient reuse of computation between
candidate programs with common prefixes.
This allows us to explore the search space at roughly the speed of 3 106 programs per second.

15
Published as a conference paper at ICLR 2017

2 1
even positive numbers
64 0 even negative number
3
Second embedding dimension 2 (n) 75 odd positive numbers
-2
-6-4 -3-1 odd negative numbers
-7-5 zero
Null (padding value)

254
255
Null -256-255

First embedding dimension 1 (n)

Figure 8: A learned embedding of integers {256, 255, . . . , 1, 0, 1, . . . , 255} in R2 . The color


intensity corresponds to the magnitude of the embedded integer.

When the search procedure extends a partial program by a new function, it has to try the functions
in the DSL in some order. At this point DFS can opt to consider the functions as ordered by their
predicted probabilities from the neural network. The probability of a function consisting of a higher-
order function and a lambda is taken to be the minimum of the probabilities of the two constituent
functions.

E T RAINING L OSS F UNCTION

In Sect. 4.5 we outlined a justification for using marginal probabilities of individual functions as
a sensible intermediate representation to provide a solver employing a Sort and add scheme (we
considered Enumerative search and the Sketch solver with this scheme). Here we provide a more
detailed discussion.
Predicting program components from input-output examples can be cast as a multilabel classification
problem, where each instance (set of input-output examples) is associated with a set of relevant
labels (functions appearing in the code that generated the examples). We denote the number of labels
(functions) by C, and note that throughout this work C = 34.
When the task is to predict a subset of labels y {0, 1}C , different loss functions can be employed
to measure the prediction error of a classifier h(x) or ranking function f (x). Dembczynski et al.
(2010) discuss the following three loss functions:

Hamming loss counts the number of labels that are predicted incorrectly by a classifier h:
C
1{yc 6=hc (x)}
X
LH (y, h(x)) =
c=1

Rank loss counts the number of label pairs violating the condition that relevant labels are
ranked higher than irrelevant ones by a scoring function f :
C
1{fi <fj }
X
Lr (y, f (x)) =
(i,j):yi =1,yj =0

Subset Zero-One loss indicates whether all labels have been correctly predicted by h:
Ls (y, h(x)) = 1{y6=h(x)}

16
Published as a conference paper at ICLR 2017

Dembczynski et al. (2010) proved that Bayes optimal decisions under the Hamming and Rank loss
functions, i.e., decisions minimizing the expected loss under these loss functions, can be computed
from marginal probabilities pc (yc |x). This suggests that:

Multilabel classification under these two loss functions may not benefit from considering
dependencies between the labels.
Instead of minimizing the Rank loss directly, one can simply use any approach for single
label prediction that properly estimates the marginal probabilities. (Dembczynski et al.,
2012)

Training the neural network with the negative cross entropy loss function as the training objective is
precisely a method for properly estimating the marginal probabilities of labels (functions appearing
in source code). It is thus a sensible step in preparation for making predictions under a Rank loss.
It remains to discuss the relationship between the Rank loss and the actual quantity we care about,
which is the total runtime of a Sort and add search procedure. Recall the simplifying assumption that
the runtime of searching for a program of length T with C functions made available to the search is
proportional to C T , and consider a Sort and add search for a program of length T , where the size
of the active set is increased by 1 whenever the search fails. Starting with an active set of size 1, the
total time until a solution is found can be upper bounded by
T +1
1T + 2T + + CA
T
CA T
CCA
where CA is the size of the active set when the search finally succeeds (i.e., when the active set finally
contains all necessary functions for a solution to exist). Hence the total runtime of a Sort and add
T
search can be upper bounded by a quantity that is proportional to CA .
Now fix a valid program solution P that requires CP functions, and let yP {0, 1}C be the indicator
vector of functions used by P . Let D := CA CP be the number of redundant operations added
into the active set until all operations from P have been added.
Example 1. Suppose the labels, as sorted by decreasing predicted marginal probabilities f (x), are
as follows:
1111001000100000000000000000000000
Then the solution P contains CP = 6 functions, but the active set needs to grow to size CA = 11
to include all of them, adding D = 5 redundant functions along the way. Note that the rank loss of
the predictions f (x) is Lr (yP , f (x)) = 2 + 5 = 7, as it double counts the two redundant functions
which are scored higher than two relevant labels.

Noting that in general Lr (yP , f (x)) D, the previous upper bound on the runtime of Sort and add
can be further upper bounded as follows:
T
CA = (CP + D)T const + const DT const + const Lr (yP , f (x))T
Hence we see that for a constant value of T , this upper bound can be minimized by optimizing the
Rank loss of the predictions f (x). Note also that Lr (yP , f (x)) = 0 would imply D = 0, in which
case CA = CP .

F D OMAIN S PECIFIC L ANGUAGE OF D EEP C ODER


Here we provide a description of the semantics of our DSL from Sect. 4.1, both in English and as a
Python implementation. Throughout, N ULL is a special value that can be set e.g. to an integer outside
the working integer range.
First-order functions:

H EAD :: [int] -> int


lambda xs: xs[0] if len(xs)>0 else Null
Given an array, returns its first element (or N ULL if the array is empty).
L AST :: [int] -> int
lambda xs: xs[-1] if len(xs)>0 else Null
Given an array, returns its last element (or N ULL if the array is empty).

17
Published as a conference paper at ICLR 2017

TAKE :: int -> [int] -> int


lambda n, xs: xs[:n]
Given an integer n and array xs, returns the array truncated after the n-th element. (If the
length of xs was no larger than n in the first place, it is returned without modification.)
D ROP :: int -> [int] -> int
lambda n, xs: xs[n:]
Given an integer n and array xs, returns the array with the first n elements dropped. (If the
length of xs was no larger than n in the first place, an empty array is returned.)
ACCESS :: int -> [int] -> int
lambda n, xs: xs[n] if n>=0 and len(xs)>n else Null
Given an integer n and array xs, returns the (n+1)-st element of xs. (If the length of xs
was less than or equal to n, the value N ULL is returned instead.)
M INIMUM :: [int] -> int
lambda xs: min(xs) if len(xs)>0 else Null
Given an array, returns its minimum (or N ULL if the array is empty).
M AXIMUM :: [int] -> int
lambda xs: max(xs) if len(xs)>0 else Null
Given an array, returns its maximum (or N ULL if the array is empty).
R EVERSE :: [int] -> [int]
lambda xs: list(reversed(xs))
Given an array, returns its elements in reversed order.
S ORT :: [int] -> [int]
lambda xs: sorted(xs)
Given an array, return its elements in non-decreasing order.
S UM :: [int] -> int
lambda xs: sum(xs)
Given an array, returns the sum of its elements. (The sum of an empty array is 0.)

Higher-order functions:

M AP :: (int -> int) -> [int] -> [int]


lambda f, xs: [f(x) for x in xs]
Given a lambda function f mapping from integers to integers, and an array xs, returns the
array resulting from applying f to each element of xs.
F ILTER :: (int -> bool) -> [int] -> [int]
lambda f, xs: [x for x in xs if f(x)]
Given a predicate f mapping from integers to truth values, and an array xs, returns the
elements of xs satisfying the predicate in their original order.
C OUNT :: (int -> bool) -> [int] -> int
lambda f, xs: len([x for x in xs if f(x)])
Given a predicate f mapping from integers to truth values, and an array xs, returns the
number of elements in xs satisfying the predicate.
Z IP W ITH :: (int -> int -> int) -> [int] -> [int] -> [int]
lambda f, xs, ys: [f(x, y) for (x, y) in zip(xs, ys)]
Given a lambda function f mapping integer pairs to integers, and two arrays xs and ys,
returns the array resulting from applying f to corresponding elements of xs and ys. The
length of the returned array is the minimum of the lengths of xs and ys.
S CANL 1 :: (int -> int -> int) -> [int] -> [int]
Given a lambda function f mapping integer pairs to integers, and an array xs, returns an
array ys of the same length as xs and with its content defined by the recurrence ys[0] =
xs[0], ys[n] = f(ys[n-1], xs[n]) for n 1.

The I NTI NT lambdas (+1), (-1), (*2), (/2), (*(-1)), (**2), (*3), (/3), (*4), (/4)
provided by our DSL map integers to integers in a self-explanatory manner. The I NTB OOL lambdas
(>0), (<0), (%2==0), (%2==1) respectively test positivity, negativity, evenness and oddness of

18
Published as a conference paper at ICLR 2017

the input integer value. Finally, the I NTI NTI NT lambdas (+), (-), (*), M IN, M AX apply a
function to a pair of integers and produce a single integer.
As an example, consider the function S CANL 1 M AX, consisting of the higher-order function S CANL 1
and the I NTI NTI NT lambda M AX. Given an integer array a of length L, this function computes
the running maximum of the array a. Specifically, it returns an array b of the same length L whose
i-th element is the maximum of the first i elements in a.

MAXIMUM

(%2==1)
(%2==0)
MINIMUM

REVERSE
ZIPWITH
ACCESS

SCANL1
COUNT
FILTER
DROP
HEAD

SORT
TAKE
LAST

(**2)
(*-1)
(>0)
(<0)

(+1)
MAX

SUM
MAP

(*2)
(*3)
(*4)
MIN

(-1)

(/2)
(/3)
(/4)
+

*
-
HEAD .17 .05
(15) (12)
.29 .09 .04 .06
(14) (15) (9) (14)
.12
(12)
.06
(14)
.08
(15)
.07
(13)
.06
(15)
.06
(15)
.16
(9)
.11
(15)
.03
(13)
.06
(14)
.00
(13)
.09
(12)
.05
(7)
.05
(15)
.03
(15)
.03
(14)
.01
(14)
.01
(13)
.02
(15)
.03
(14)
.02
(15)
.00
(14)
.06
(15)
.01
(14)
.02
(14)
.08
(15)
.00
(15)
LAST .34
(6)
.15
(6)
.01
(6)
.05
(6)
.07
(4)
.04
(4)
.09
(6)
.04
(6)
.01
(6)
.02
(6)
.11
(6)
.04
(6)
.01
(2)
.04
(5)
.11
(6)
.05
(5)
.11
(6)
.01
(5)
.03
(3)
.06
(6)
.01
(6)
.03
(6)
.03
(5)
.01
(6)
.03
(6)
.01
(5)
.02
(5)
.00
(5)
.02
(6)
.13
(6)
.00
(6)
.01
(6)
.02
(6)
ACCESS .10
(15)
.19
(18)
.15 .05 .10 .18
(16) (18) (16) (16)
.16
(14)
.03
(14)
.09
(17)
.13
(16)
.12
(16)
.03
(13)
.14
(13)
.18
(17)
.06
(16)
.05
(17)
.00
(16)
.02
(17)
.10
(14)
.07
(15)
.04
(15)
.07
(17)
.02
(16)
.01
(17)
.04
(17)
.03
(17)
.02
(18)
.00
(18)
.03
(18)
.02
(18)
.02
(17)
.03
(18)
.02
(18)
MINIMUM .16
(8)
.22
(9)
.04
(7)
.12
(9)
.12
(7)
.08
(8)
.24
(8)
.03
(8)
.16
(9)
.13
(9)
.13
(9)
.13
(9)
.06
(7)
.34
(9)
.02
(8)
.25
(8)
.10
(5)
.00
(8)
.01
(3)
.05
(8)
.03
(7)
.06
(9)
.02
(8)
.00
(9)
.02
(9)
.03
(9)
.04
(9)
.00
(9)
.00
(9)
.01
(9)
.04
(8)
.02
(9)
.02
(9)
MAXIMUM .25
(10)
.23 .22
(10) (10)
.05
(10)
.08
(7)
.02
(6)
.10
(9)
.09
(9)
.04
(10)
.08
(10)
.06
(10)
.10
(10)
.05
(7)
.08
(8)
.04
(6)
.09
(9)
.08
(8)
.00
(10)
.03
(5)
.02
(7)
.04
(10)
.09
(10)
.01
(10)
.00
(10)
.02
(10)
.02
(10)
.02
(10)
.00
(10)
.00
(9)
.07
(10)
.01
(9)
.00
(9)
.00
(10)
TAKE .05
(36)
.06 .04
(40) (40)
.06 .02
(40) (39)
.05
(39)
.12
(36)
.06
(40)
.05
(42)
.09
(40)
.02
(36)
.01
(38)
.05
(21)
.06
(40)
.05
(37)
.03
(34)
.00
(37)
.02
(32)
.11
(20)
.02
(35)
.03
(41)
.04
(40)
.00
(41)
.03
(40)
.01
(37)
.04
(39)
.02
(39)
.00
(42)
.02
(41)
.03
(39)
.01
(39)
.00
(41)
.00
(42)
DROP .04
(44)
.03 .03
(43) (43)
.03 .03 .11
(44) (41) (42)
.09
(36)
.06
(42)
.08
(44)
.09
(38)
.05
(38)
.01
(35)
.14
(29)
.06
(39)
.04
(40)
.09
(39)
.09
(39)
.00
(38)
.10
(21)
.03
(40)
.05
(44)
.08
(43)
.01
(44)
.01
(45)
.05
(44)
.06
(40)
.03
(43)
.02
(41)
.01
(43)
.02
(44)
.03
(42)
.01
(44)
.00
(45)
FILTER .01
(115)
.01 .01
(118) (114)
.02 .00 .03 .06
(117) (117) (112) (109)
.06
(90)
.05
(87)
.07
(88)
.08
(81)
.05
(110)
.11
(86)
.08
(93)
.04
(91)
.11
(89)
.07
(92)
.01
(89)
.03
(22)
.03
(102)
.02
(113)
.04
(110)
.05
(115)
.01
(117)
.02
(114)
.03
(116)
.01
(114)
.00
(111)
.01
(112)
.05
(116)
.03
(115)
.02
(114)
.00
(116)
(>0) .03
(33)
.02 .01
(34) (30)
.02 .01 .02 .07
(33) (33) (32) (31)
.08
(6)
.13
(33)
.15
(32)
.13
(31)
.06
(23)
.16
(25)
.11
(26)
.11
(29)
.16
(30)
.05
(25)
.00
(29)
.05
(11)
.06
(30)
.02
(32)
.04
(32)
.02
(33)
.01
(34)
.03
(34)
.02
(32)
.01
(33)
.00
(32)
.00
(31)
.05
(32)
.06
(34)
.03
(34)
.02
(34)
(<0) .00
(33)
.01 .00
(33) (32)
.00 .00 .01 .01
(33) (33) (33) (32)
.00
(2)
.13
(32)
.07
(32)
.06
(33)
.01
(31)
.14
(27)
.11
(24)
.03
(27)
.13
(16)
.10
(24)
.01
(26)
.04
(3)
.02
(24)
.04
(33)
.01
(31)
.06
(32)
.01
(32)
.03
(32)
.04
(33)
.00
(32)
.00
(32)
.00
(32)
.04
(33)
.05
(33)
.04
(32)
.01
(32)
(%2==1) .01
(36)
.01 .01
(38) (36)
.04 .00 .06 .06
(38) (38) (36) (31)
.05
(8)
.09
(36)
.11
(37)
.19
(37)
.06
(26)
.12
(29)
.12
(32)
.05
(30)
.07
(27)
.16
(34)
.00
(29)
.02
(10)
.06
(32)
.03
(35)
.06
(34)
.07
(37)
.00
(38)
.03
(38)
.03
(38)
.00
(38)
.00
(36)
.00
(37)
.03
(37)
.04
(35)
.06
(37)
.00
(38)
(%2==0) .01
(45)
.01 .00
(45) (43)
.00 .00 .02 .06
(45) (45) (39) (38)
.03
(8)
.09
(42)
.09
(45)
.17
(44)
.04
(33)
.12
(33)
.05
(40)
.04
(32)
.09
(40)
.02
(33)
.00
(33)
.04
(11)
.02
(42)
.00
(44)
.05
(43)
.05
(45)
.00
(45)
.02
(42)
.04
(44)
.02
(43)
.00
(43)
.02
(43)
.06
(45)
.01
(44)
.01
(43)
.00
(44)
COUNT .04
(32)
.02 .01
(32) (27)
.01 .01 .03 .04
(32) (32) (28) (22)
.18
(24)
.14
(21)
.24
(30)
.20
(20)
.16
(20)
.19
(28)
.15
(29)
.11
(27)
.10
(24)
.14
(25)
.00
(28)
.09
(14)
.07
(26)
.03
(31)
.05
(30)
.02
(32)
.00
(32)
.05
(32)
.03
(31)
.01
(32)
.00
(32)
.00
(31)
.03
(31)
.04
(31)
.06
(32)
.02
(32)
MAP .01
(246)
.01 .01
(248) (247)
.01 .00 .01 .02
(250) (249) (231) (236)
.02
(220)
.02
(243)
.01
(246)
.02
(243)
.02
(240)
.01
(248)
.08
(186)
.04
(203)
.11
(178)
.06
(188)
.05
(193)
.04
(40)
.04
(206)
.02
(246)
.04
(235)
.03
(225)
.03
(231)
.05
(213)
.11
(224)
.03
(228)
.01
(214)
.02
(217)
.06
(220)
.03
(218)
.05
(225)
.00
(250)
MIN .02
(123)
.00 .01
(122) (122)
.00 .00 .01 .02
(123) (121) (121) (117)
.01
(98)
.01
(115)
.01
(114)
.03
(117)
.02
(118)
.02
(120)
.10
(57)
.07
(107)
.08
(90)
.04
(92)
.02
(102)
.00
(6)
.04
(76)
.03
(117)
.06
(113)
.03
(111)
.02
(118)
.04
(114)
.08
(119)
.03
(118)
.01
(115)
.01
(112)
.06
(117)
.03
(116)
.03
(116)
.00
(122)
MAX .01
(128)
.01 .01
(130) (128)
.01 .00 .02 .01
(129) (126) (125) (125)
.02
(103)
.03
(125)
.02
(124)
.02
(122)
.02
(117)
.02
(125)
.15
(81)
.22
(114)
.07
(83)
.05
(99)
.02
(110)
.00
(5)
.03
(78)
.03
(120)
.05
(124)
.03
(125)
.03
(124)
.03
(126)
.04
(130)
.03
(125)
.01
(124)
.02
(122)
.04
(120)
.04
(124)
.03
(122)
.00
(127)
+ .01
(175)
.01 .01
(175) (175)
.00 .01 .02 .01
(175) (175) (168) (170)
.01
(147)
.02
(172)
.02
(159)
.02
(165)
.02
(171)
.00
(168)
.15
(102)
.06
(143)
.03
(129)
.19
(138)
.02
(136)
.00
(4)
.04
(120)
.02
(169)
.04
(169)
.00
(169)
.02
(171)
.04
(157)
.08
(171)
.09
(171)
.02
(169)
.04
(166)
.03
(166)
.03
(169)
.03
(170)
.00
(174)
- .01
(152)
.01 .02
(154) (152)
.01 .00 .02 .00
(150) (152) (149) (148)
.02
(128)
.03
(145)
.03
(145)
.03
(150)
.02
(142)
.01
(147)
.15
(90)
.10
(123)
.07
(123)
.24
(116)
.02
(119)
.01
(7)
.03
(93)
.02
(147)
.03
(146)
.03
(149)
.04
(149)
.03
(143)
.07
(147)
.03
(149)
.02
(144)
.04
(146)
.03
(147)
.04
(144)
.06
(149)
.00
(154)
* .00
(139)
.01 .03
(141) (141)
.02 .01 .03 .01
(141) (142) (132) (135)
.02
(113)
.03
(137)
.02
(135)
.03
(133)
.01
(130)
.00
(138)
.24
(83)
.08
(121)
.03
(122)
.08
(102)
.08
(107)
.04
(116)
.02
(135)
.01
(131)
.06
(138)
.09
(139)
.03
(134)
.06
(133)
.05
(138)
.05
(131)
.06
(136)
.04
(132)
.01
(138)
.01
(137)
.00
(138)
ZIPWITH .01
(423)
.01 .01
(428) (427)
.01 .01 .02 .01
(425) (426) (409) (407)
.02
(335)
.03
(408)
.02
(401)
.03
(403)
.02
(397)
.02
(413)
.14
(219)
.09
(314)
.04
(306)
.11
(259)
.08
(284)
.02
(289)
.04
(327)
.02
(404)
.04
(400)
.03
(410)
.03
(414)
.04
(397)
.07
(411)
.04
(413)
.02
(399)
.03
(404)
.04
(402)
.03
(406)
.04
(406)
.00
(424)
SCANL1 .01
(125)
.01 .03
(125) (122)
.01 .00 .03 .01
(124) (122) (118) (120)
.01
(109)
.02
(121)
.01
(116)
.02
(119)
.02
(122)
.00
(119)
.14
(79)
.09
(78)
.05
(73)
.11
(69)
.09
(64)
.02
(99)
.03
(21)
.04
(121)
.03
(118)
.03
(120)
.03
(119)
.02
(119)
.05
(123)
.02
(122)
.03
(123)
.06
(118)
.01
(118)
.03
(119)
.04
(121)
.00
(123)
SORT .02
(33)
.05 .00
(33) (30)
.01 .01 .04 .07
(31) (33) (32) (32)
.05
(28)
.01
(31)
.04
(33)
.03
(30)
.01
(32)
.06
(32)
.17
(27)
.18
(27)
.02
(23)
.09
(26)
.06
(26)
.00
(26)
.02
(6)
.09
(29)
.09
(31)
.06
(32)
.04
(33)
.03
(31)
.07
(33)
.03
(33)
.02
(33)
.01
(33)
.02
(32)
.03
(33)
.01
(31)
.00
(31)
REVERSE .00
(39)
.01 .00
(40) (39)
.00 .00 .01 .09
(40) (40) (38) (38)
.02
(32)
.02
(38)
.01
(38)
.02
(36)
.04
(38)
.06
(38)
.21
(23)
.16
(30)
.05
(34)
.01
(33)
.02
(32)
.03
(29)
.06
(9)
.08
(33)
.08
(38)
.09
(39)
.01
(38)
.06
(37)
.11
(39)
.01
(39)
.00
(37)
.00
(39)
.04
(40)
.03
(37)
.03
(37)
.00
(40)
(*-1) .03
(26)
.04 .01
(26) (25)
.01 .00 .02 .03
(26) (27) (26) (26)
.05
(24)
.03
(26)
.03
(26)
.04
(26)
.03
(27)
.02
(27)
.16
(15)
.10
(22)
.06
(20)
.09
(22)
.02
(23)
.05
(6)
.06
(22)
.02
(26)
.13
(26)
.02
(27)
.05
(24)
.10
(27)
.02
(26)
.00
(25)
.03
(26)
.05
(26)
.02
(27)
.03
(27)
.00
(27)
(**2) .00
(19)
.01 .00
(21) (20)
.03 .01 .01 .07
(21) (21) (19) (21)
.01
(20)
.04
(21)
.00
(20)
.00
(21)
.01
(21)
.00
(21)
.12
(16)
.02
(15)
.06
(16)
.04
(16)
.39
(18)
.09
(4)
.05
(15)
.00
(21)
.02
(19)
.01
(21)
.04
(20)
.05
(18)
.01
(20)
.05
(19)
.07
(21)
.04
(21)
.01
(19)
.02
(21)
.00
(21)
(+1) .00
(39)
.01 .00
(39) (38)
.00 .00 .01 .04
(39) (39) (34) (38)
.01
(35)
.01
(39)
.00
(38)
.04
(39)
.01
(36)
.01
(39)
.08
(30)
.03
(35)
.09
(20)
.02
(28)
.03
(31)
.06
(5)
.03
(33)
.01
(37)
.07
(36)
.03
(36)
.02
(38)
.43
(39)
.04
(39)
.01
(39)
.00
(39)
.06
(38)
.02
(39)
.03
(38)
.00
(39)
(-1) .01
(27)
.01 .01
(27) (27)
.01 .02 .02 .00
(28) (28) (25) (23)
.02
(26)
.04
(26)
.03
(28)
.02
(28)
.01
(27)
.01
(27)
.04
(24)
.07
(28)
.12
(23)
.01
(21)
.05
(19)
.08
(8)
.03
(26)
.02
(28)
.05
(27)
.01
(28)
.07
(25)
.23
(28)
.04
(28)
.00
(23)
.02
(27)
.08
(28)
.03
(24)
.04
(27)
.00
(28)
(*2) .01
(24)
.00 .00
(23) (24)
.00 .01 .00 .00
(24) (24) (21) (22)
.01
(20)
.01
(23)
.00
(23)
.00
(24)
.03
(22)
.00
(24)
.02
(19)
.01
(19)
.39
(19)
.03
(19)
.00
(20)
.10
(6)
.05
(21)
.07
(24)
.02
(23)
.01
(23)
.00
(23)
.01
(24)
.03
(24)
.01
(23)
.06
(21)
.03
(21)
.06
(24)
.02
(21)
.00
(24)
(*3) .01
(37)
.00 .00
(37) (38)
.00 .00 .00 .00
(38) (38) (38) (34)
.00
(31)
.00
(36)
.00
(37)
.00
(36)
.00
(36)
.00
(38)
.02
(30)
.02
(32)
.14
(31)
.02
(28)
.08
(27)
.02
(6)
.06
(36)
.01
(38)
.06
(35)
.02
(36)
.04
(36)
.02
(38)
.02
(33)
.04
(37)
.05
(36)
.06
(37)
.03
(36)
.03
(36)
.00
(38)
(*4) .01
(35)
.00 .03
(35) (35)
.00 .00 .02 .00
(35) (34) (34) (33)
.00
(29)
.01
(32)
.00
(34)
.00
(34)
.04
(33)
.00
(34)
.02
(24)
.00
(27)
.11
(25)
.16
(27)
.05
(29)
.06
(8)
.06
(28)
.04
(35)
.05
(34)
.02
(34)
.02
(35)
.03
(35)
.04
(34)
.06
(32)
.06
(33)
.05
(35)
.00
(32)
.00
(35)
.00
(34)
(/2) .00
(31)
.00 .00
(32) (32)
.00 .00 .00 .00
(32) (32) (29) (31)
.04
(30)
.01
(30)
.01
(32)
.00
(31)
.01
(32)
.01
(31)
.16
(26)
.03
(22)
.08
(22)
.07
(25)
.00
(22)
.03
(3)
.07
(25)
.03
(31)
.02
(32)
.04
(31)
.03
(32)
.08
(31)
.13
(32)
.05
(29)
.00
(31)
.01
(32)
.10
(30)
.13
(30)
.00
(32)
(/3) .02
(33)
.02 .03
(34) (33)
.01 .00 .00 .01
(33) (33) (31) (31)
.07
(31)
.03
(34)
.02
(34)
.01
(31)
.04
(33)
.01
(33)
.07
(27)
.04
(28)
.11
(27)
.04
(24)
.06
(30)
.06
(9)
.02
(28)
.01
(34)
.01
(31)
.06
(34)
.02
(32)
.10
(34)
.08
(30)
.02
(34)
.00
(32)
.01 .12
(31) (32)
.15
(34)
.00
(33)
(/4) .02
(27)
.02 .00
(27) (27)
.00 .00 .01 .00
(27) (26) (26) (26)
.01
(23)
.02
(27)
.00
(26)
.00
(26)
.03
(25)
.00
(27)
.07
(20)
.03
(19)
.09
(21)
.10
(22)
.00
(22)
.03
(2)
.02
(23)
.03
(25)
.02
(24)
.01
(27)
.01
(27)
.02
(26)
.02
(26)
.01
(24)
.00
(25)
.01 .13 .17
(27) (25) (27)
.00
(27)
SUM .01
(8)
.07
(8)
.13
(8)
.06
(8)
.01
(8)
.10
(8)
.00
(8)
.15
(6)
.07
(8)
.04
(7)
.06
(8)
.03
(7)
.00
(8)
.31
(6)
.09
(7)
.02
(5)
.11
(6)
.18
(8)
.02
(4)
.06
(1)
.18
(6)
.01
(6)
.00
(8)
.07
(8)
.09
(8)
.12
(8)
.09
(8)
.06
(8)
.14
(8)
.00
(7)
.02
(8)
.05
(7)
.11
(8)

Figure 9: Conditional confusion matrix for the neural network and test set of P = 500 programs of
length T = 3 that were used to obtain the results presented in Table 1. Each cell contains the average
false positive probability (in larger font) and the number of test programs from which this average
was computed (smaller font, in brackets). The color intensity of each cells shading coresponds to
the magnitude of the average false positive probability.

G A NALYSIS OF TRAINED NEURAL NETWORKS

We analyzed the performance of trained neural networks by investigating which program instructions
tend to get confused by the networks. To this end, we looked at a generalization of confusion matrices
to the multilabel classification setting: for each attribute in a ground truth program (rows) measure
how likely each other attribute (columns) is predicted as a false positive. More formally, in this
matrix the (i, j)-entry is the average predicted probability of attribute j among test programs that do

19
Published as a conference paper at ICLR 2017

possess attribute i and do not possess attribute j. Intuitively, the i-th row of this matrix shows how
the presence of attribute i confuses the network into incorrectly predicting each other attribute j.
Figure 9 shows this conditional confusion matrix for the neural network and P = 500 program test
set configuration used to obtain Table 1. We re-ordered the confusion matrix to try to expose block
structure in the false positive probabilities, revealing groups of instructions that tend to be difficult to
distinguish. Figure 10 show the conditional confusion matrix for the neural network used to obtain
the table in Fig. 3a. While the results are somewhat noisy, we observe a few general tendencies:

There is increased confusion amongst instructions that select out a single element from an
array: H EAD, L AST, ACCESS, M INIMUM, M AXIMUM.
Some common attributes get predicted more often regardless of the ground truth program:
F ILTER, (>0), (<0), (%2==1), (%2==0), M IN, M AX, (+), (-), Z IP W ITH.
There are some groups of lambdas that are more difficult for the network to distinguish
within: (+) vs (-); (+1) vs (-1); (/2) vs (/3) vs (/4).
When a program uses (**2), the network often thinks its using (*), presumably because
both can lead to large values in the output.
MAXIMUM

(%2==1)
(%2==0)
MINIMUM

REVERSE
ZIPWITH
ACCESS

SCANL1
COUNT
FILTER
DROP
HEAD

SORT
TAKE
LAST

(**2)
(*-1)
(>0)
(<0)

(+1)
MAX

SUM
MAP

(*2)
(*3)
(*4)
MIN

(-1)

(/2)
(/3)
(/4)
+

*
HEAD - .24 .15 .12 .16 .12 .09 .12 .06 .04 .08 .09 .07 .06 .10 .09 .06 .07 .06 .18 .07 .04 .06 .04 .01 .08 .02 .04 .05 .00 .02 .06 .07 .01
(39) (33) (41) (39) (24) (19) (26) (33) (34) (38) (37) (36) (12) (30) (34) (33) (33) (37) (21) (25) (37) (39) (37) (38) (38) (36) (41) (41) (39) (32) (34) (35) (41)

LAST .14 .29 .12 .17 .09 .10 .12 .07 .11 .12 .13 .16 .09 .12 .14 .05 .09 .00 .19 .07 .04 .05 .02 .02 .06 .02 .03 .05 .02 .02 .04 .04 .02
(44) (38) (44) (40) (24) (28) (27) (38) (38) (44) (37) (39) (16) (36) (39) (38) (40) (38) (25) (31) (42) (41) (42) (46) (39) (44) (42) (44) (42) (44) (40) (41) (45)

ACCESS .14 .26 .08 .16 .14 .17 .17 .13 .11 .14 .14 .10 .10 .13 .12 .06 .08 .04 .18 .08 .05 .06 .04 .01 .05 .05 .02 .04 .01 .03 .06 .05 .03
(106) (106) (91) (96) (83) (94) (77) (84) (88) (96) (89) (55) (42) (88) (90) (92) (97) (110) (66) (74) (102) (97) (108) (104) (99) (107) (106) (108) (111) (102) (101) (106) (113)

MINIMUM .19 .24 .12 .15 .09 .13 .16 .06 .11 .09 .13 .10 .09 .13 .10 .06 .06 .07 .20 .10 .04 .05 .05 .04 .03 .05 .02 .10 .01 .03 .04 .06 .03
(60) (58) (37) (59) (34) (40) (39) (50) (49) (55) (52) (48) (19) (50) (50) (50) (51) (52) (36) (43) (54) (55) (56) (53) (54) (53) (58) (53) (57) (49) (49) (57) (59)

MAXIMUM .16 .26 .18 .14 .18 .10 .10 .09 .09 .09 .08 .14 .10 .09 .12 .05 .08 .03 .10 .10 .05 .08 .03 .02 .03 .05 .02 .04 .02 .02 .04 .05 .01
(48) (44) (32) (49) (32) (27) (34) (43) (46) (46) (44) (45) (18) (34) (34) (43) (44) (41) (17) (35) (44) (48) (47) (45) (41) (50) (50) (44) (50) (43) (47) (45) (50)

TAKE .09 .11 .10 .06 .07 .17 .22 .09 .11 .08 .12 .04 .06 .14 .09 .09 .07 .05 .19 .06 .04 .07 .04 .02 .03 .05 .03 .04 .01 .03 .04 .04 .00
(128) (123) (114) (119) (127) (132) (94) (111) (108) (116) (116) (70) (43) (123) (107) (118) (120) (124) (73) (95) (126) (132) (131) (134) (126) (139) (133) (135) (138) (129) (125) (127) (143)

DROP .05 .11 .09 .06 .05 .16 .22 .11 .14 .14 .13 .03 .07 .12 .13 .08 .11 .05 .15 .09 .05 .12 .05 .02 .04 .03 .02 .04 .01 .02 .06 .05 .01
(131) (135) (133) (133) (130) (140) (98) (109) (117) (125) (124) (69) (46) (118) (120) (112) (129) (129) (68) (99) (137) (143) (143) (139) (136) (140) (145) (138) (141) (134) (138) (136) (150)

FILTER .05 .09 .07 .05 .05 .09 .09 .08 .11 .10 .11 .07 .08 .12 .11 .08 .12 .04 .11 .07 .04 .08 .04 .03 .06 .04 .03 .03 .01 .04 .06 .04 .01
(200) (196) (178) (194) (199) (164) (160) (130) (144) (142) (147) (150) (73) (156) (155) (150) (166) (170) (69) (144) (203) (194) (197) (203) (195) (192) (204) (191) (205) (194) (192) (185) (213)

(>0) .04 .11 .06 .04 .05 .08 .08 .15 .21 .16 .15 .05 .06 .16 .14 .09 .11 .04 .15 .09 .05 .10 .05 .02 .05 .04 .02 .03 .01 .04 .06 .05 .01
(124) (124) (102) (122) (125) (98) (88) (47) (125) (111) (112) (51) (38) (102) (90) (93) (105) (113) (50) (82) (126) (120) (117) (125) (117) (116) (122) (117) (123) (120) (118) (118) (131)

(<0) .05 .07 .08 .07 .06 .09 .10 .14 .19 .10 .16 .03 .08 .16 .12 .09 .10 .03 .15 .06 .05 .08 .06 .02 .05 .06 .03 .03 .01 .04 .04 .05 .01
(101) (100) (82) (97) (104) (71) (72) (37) (101) (84) (93) (40) (40) (80) (81) (85) (88) (91) (46) (70) (95) (93) (103) (105) (93) (101) (99) (97) (104) (96) (98) (98) (106)

(%2==1) .03 .06 .06 .04 .04 .08 .08 .11 .14 .12 .20 .04 .06 .15 .13 .10 .14 .05 .10 .09 .05 .09 .05 .03 .04 .03 .03 .02 .00 .04 .04 .04 .02
(91) (92) (76) (89) (90) (65) (66) (21) (73) (70) (90) (37) (34) (73) (69) (56) (69) (71) (28) (63) (87) (85) (88) (82) (92) (88) (92) (88) (89) (81) (87) (81) (92)

(%2==0) .06 .10 .05 .03 .07 .06 .10 .13 .12 .16 .23 .07 .09 .10 .13 .09 .09 .03 .12 .05 .05 .09 .04 .02 .06 .04 .03 .03 .01 .04 .07 .04 .01
(93) (88) (72) (89) (91) (68) (68) (29) (77) (82) (93) (45) (33) (72) (71) (74) (75) (79) (35) (59) (87) (85) (91) (93) (91) (83) (92) (87) (92) (90) (83) (85) (97)

COUNT .04 .09 .07 .04 .06 .05 .08 .29 .14 .16 .17 .16 .07 .16 .15 .10 .11 .04 .16 .08 .05 .10 .06 .02 .04 .05 .02 .02 .01 .04 .05 .05 .02
(190) (188) (136) (183) (190) (120) (111) (130) (114) (127) (138) (143) (64) (154) (143) (143) (160) (167) (83) (118) (171) (170) (185) (182) (176) (181) (180) (179) (181) (175) (174) (177) (192)

MAP .06 .08 .05 .04 .06 .06 .08 .15 .07 .10 .10 .11 .05 .13 .11 .10 .11 .07 .12 .07 .04 .08 .05 .03 .05 .05 .03 .04 .02 .05 .07 .05 .01
(345) (344) (302) (333) (342) (272) (267) (232) (280) (306) (314) (310) (243) (275) (266) (278) (295) (302) (127) (251) (340) (328) (327) (327) (310) (329) (336) (325) (337) (305) (303) (299) (368)

MIN .05 .08 .06 .06 .04 .11 .06 .10 .07 .08 .10 .11 .08 .06 .15 .10 .11 .05 .05 .04 .05 .08 .05 .02 .05 .06 .03 .02 .01 .04 .07 .05 .01
(131) (132) (116) (132) (126) (120) (107) (83) (112) (114) (121) (117) (101) (43) (112) (103) (112) (114) (19) (58) (131) (122) (133) (131) (126) (132) (130) (131) (132) (123) (129) (117) (141)

MAX .04 .07 .04 .02 .04 .06 .07 .15 .08 .10 .09 .10 .06 .07 .18 .09 .10 .05 .06 .04 .05 .08 .04 .03 .07 .05 .03 .02 .01 .04 .05 .05 .01
(147) (147) (130) (144) (138) (116) (121) (94) (112) (127) (129) (128) (102) (46) (124) (112) (127) (125) (28) (63) (141) (138) (139) (145) (138) (143) (142) (138) (138) (133) (132) (135) (154)

+ .04 .08 .03 .04 .03 .06 .05 .14 .09 .12 .09 .10 .04 .08 .11 .11 .30 .07 .04 .08 .04 .08 .02 .03 .03 .05 .05 .04 .02 .05 .06 .05 .02
(136) (136) (122) (134) (137) (117) (103) (79) (105) (121) (106) (121) (92) (48) (105) (102) (121) (124) (21) (69) (130) (132) (135) (135) (131) (134) (135) (131) (127) (129) (126) (126) (142)

- .04 .10 .01 .03 .04 .03 .07 .11 .07 .08 .08 .08 .05 .06 .13 .13 .28 .07 .04 .06 .04 .07 .06 .03 .05 .04 .04 .04 .01 .04 .07 .05 .02
(104) (106) (95) (103) (106) (87) (88) (63) (85) (92) (87) (90) (77) (33) (82) (85) (89) (95) (17) (54) (98) (95) (103) (96) (95) (103) (109) (110) (109) (95) (96) (94) (111)

* .03 .05 .04 .03 .04 .05 .03 .12 .08 .05 .11 .07 .03 .07 .09 .10 .10 .11 .07 .03 .08 .05 .11 .03 .04 .03 .03 .03 .04 .07 .04 .02
(92) (88) (92) (88) (87) (75) (72) (51) (77) (79) (73) (78) (68) (24) (68) (67) (76) (79) (65) (90) (87) (86) (88) (87) (88) (90) (87) (90) (80) (81) (81) (96)

ZIPWITH .05 .08 .04 .04 .04 .06 .06 .13 .08 .09 .09 .09 .05 .06 .11 .10 .11 .13 .06 .07 .03 .09 .04 .04 .05 .05 .04 .03 .01 .04 .06 .04 .01
(318) (317) (290) (314) (305) (266) (253) (192) (256) (276) (272) (276) (226) (91) (215) (212) (215) (243) (242) (219) (303) (297) (310) (305) (301) (310) (308) (304) (310) (287) (294) (283) (334)

SCANL1 .04 .09 .05 .05 .05 .09 .07 .15 .09 .12 .10 .11 .07 .08 .10 .10 .10 .13 .05 .13 .06 .08 .05 .02 .04 .04 .02 .03 .01 .03 .05 .05 .02
(175) (176) (151) (174) (176) (141) (137) (120) (141) (153) (160) (153) (114) (68) (107) (100) (116) (133) (160) (72) (175) (174) (173) (180) (168) (180) (180) (184) (175) (169) (168) (168) (191)

SORT .05 .09 .06 .02 .03 .03 .09 .22 .12 .08 .16 .10 .04 .11 .14 .12 .10 .09 .07 .10 .10 .13 .07 .02 .04 .05 .03 .02 .00 .04 .05 .04 .00
(52) (52) (44) (50) (50) (37) (40) (44) (50) (43) (49) (46) (32) (22) (45) (43) (42) (42) (50) (21) (40) (51) (53) (51) (51) (54) (52) (52) (51) (51) (51) (50) (56)

REVERSE .05 .07 .02 .02 .06 .05 .11 .15 .09 .06 .10 .11 .05 .08 .15 .14 .12 .08 .07 .15 .10 .10 .06 .02 .05 .10 .04 .05 .02 .07 .07 .05 .00
(62) (59) (47) (59) (62) (51) (54) (43) (52) (49) (55) (52) (39) (18) (44) (48) (52) (47) (55) (23) (47) (59) (58) (57) (57) (61) (61) (59) (60) (57) (51) (55) (64)

(*-1) .05 .06 .03 .03 .05 .03 .07 .12 .06 .15 .06 .06 .04 .18 .09 .11 .11 .04 .13 .05 .06 .12 .03 .06 .03 .01 .03 .01 .05 .08 .03 .03
(43) (43) (41) (43) (44) (33) (37) (29) (32) (42) (41) (41) (37) (38) (32) (38) (38) (37) (19) (29) (44) (41) (45) (45) (39) (39) (42) (43) (42) (45) (42) (47)

(**2) .07 .09 .03 .04 .04 .04 .03 .18 .09 .10 .06 .09 .03 .13 .12 .14 .07 .43 .18 .11 .02 .06 .07 .02 .05 .02 .13 .03 .03 .07 .05 .01
(44) (47) (37) (40) (42) (36) (33) (35) (40) (44) (35) (43) (34) (36) (38) (38) (31) (39) (14) (36) (42) (40) (45) (40) (43) (47) (45) (46) (38) (43) (40) (46)

(+1) .05 .09 .06 .04 .06 .05 .09 .13 .05 .07 .16 .10 .07 .12 .15 .08 .06 .08 .14 .10 .06 .08 .07 .04 .10 .02 .03 .02 .04 .06 .08 .01
(61) (57) (49) (58) (55) (45) (47) (44) (49) (49) (62) (58) (45) (48) (48) (51) (47) (55) (27) (41) (59) (57) (62) (57) (64) (62) (61) (58) (59) (58) (53) (62)

(-1) .07 .08 .04 .03 .08 .10 .08 .10 .04 .15 .12 .03 .06 .13 .11 .08 .11 .06 .10 .06 .06 .07 .04 .03 .16 .01 .03 .02 .09 .07 .05 .00
(40) (43) (38) (38) (45) (39) (32) (22) (29) (38) (39) (31) (31) (35) (34) (35) (36) (37) (17) (34) (43) (42) (37) (41) (45) (40) (40) (44) (43) (42) (38) (45)

(*2) .03 .06 .04 .02 .05 .05 .10 .16 .04 .11 .05 .06 .01 .11 .07 .25 .19 .03 .08 .04 .03 .13 .02 .03 .07 .03 .02 .03 .07 .07 .01 .01
(38) (34) (30) (36) (38) (26) (30) (27) (28) (29) (36) (33) (23) (26) (26) (29) (35) (32) (8) (27) (34) (35) (30) (38) (36) (33) (33) (36) (35) (35) (33) (37)

(*3) .04 .08 .04 .01 .04 .05 .05 .10 .04 .09 .12 .07 .03 .09 .10 .04 .11 .04 .12 .06 .04 .05 .04 .02 .04 .04 .05 .03 .05 .05 .02 .01
(49) (47) (43) (42) (43) (39) (34) (25) (34) (38) (43) (39) (33) (38) (33) (36) (47) (40) (15) (42) (45) (44) (44) (47) (46) (44) (44) (48) (44) (45) (38) (49)

(*4) .04 .05 .05 .01 .03 .01 .05 .20 .05 .14 .10 .17 .03 .10 .05 .07 .15 .13 .06 .06 .03 .10 .05 .05 .04 .04 .07 .07 .04 .05 .03 .02
(35) (33) (34) (34) (37) (30) (25) (27) (28) (33) (32) (32) (23) (27) (21) (20) (34) (31) (9) (21) (32) (33) (33) (36) (31) (36) (35) (36) (35) (33) (34) (37)

(/2) .04 .10 .05 .03 .06 .06 .07 .14 .09 .09 .09 .11 .08 .10 .13 .13 .11 .05 .08 .06 .04 .08 .05 .03 .04 .07 .03 .03 .02 .11 .08 .01
(60) (67) (57) (58) (62) (53) (50) (48) (57) (57) (56) (62) (49) (50) (48) (54) (52) (53) (18) (47) (64) (62) (64) (60) (64) (67) (66) (64) (67) (64) (63) (69)

(/3) .05 .08 .03 .03 .05 .05 .08 .17 .09 .09 .07 .10 .08 .16 .13 .07 .13 .04 .12 .06 .04 .06 .07 .03 .05 .05 .03 .04 .02 .06 .09 .01
(64) (65) (58) (60) (68) (51) (56) (48) (57) (61) (64) (57) (50) (58) (49) (53) (55) (56) (27) (48) (66) (58) (69) (67) (65) (68) (68) (67) (67) (66) (63) (70)

(/4) .05 .07 .04 .04 .03 .04 .08 .12 .06 .11 .07 .09 .03 .12 .09 .10 .14 .05 .11 .06 .03 .07 .07 .03 .07 .07 .02 .01 .00 .09 .16 .00
(69) (70) (67) (72) (70) (57) (58) (45) (61) (65) (62) (63) (57) (50) (56) (57) (57) (60) (20) (52) (69) (66) (70) (68) (64) (68) (70) (64) (72) (69) (67) (74)

SUM .07 .09 .27 .20 .14 .07 .05 .09 .06 .15 .16 .14 .14 .18 .22 .30 .28 .18 .11 .59 .03 .02 .04 .02 .01 .06 .01 .13 .00 .02 .05 .02
(6) (5) (5) (5) (6) (4) (3) (4) (5) (4) (4) (6) (3) (5) (6) (4) (5) (6) (2) (6) (6) (6) (6) (5) (4) (6) (5) (6) (6) (6) (5) (5)

Figure 10: Conditional confusion matrix for the neural network and test set of P = 500 programs of
length T = 5. The presentation is the same as in Figure 9.

20

You might also like