Spaces:
Running
Running
Commit
Β·
e7d6d50
1
Parent(s):
396c2c1
Update README and app.
Browse files
README.md
CHANGED
@@ -13,6 +13,14 @@ pinned: false
|
|
13 |
|
14 |
Completed for [CS252R: Program Synthesis](https://synthesis.metareflection.club/) at the Harvard John A. Paulson School of Engineering and Applied Sciences, taught in Fall 2023 by Prof. Nada Amin.
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
## π οΈ Background
|
17 |
|
18 |
The following notes are adapted from [*Introduction to Program Synthesis*](http://people.csail.mit.edu/asolar/SynthesisCourse/TOC.htm) by Armando Solar-Lezama.
|
@@ -84,7 +92,7 @@ Synthesis Results:
|
|
84 |
|
85 |
To add additional input-output examples, modify `examples.py`. Add a new key to the dictionary `example_set` and set the value to be a list of tuples.
|
86 |
|
87 |
-
## π
|
88 |
|
89 |
The most important data structure in this implementation is the abstract syntax tree (AST). The AST is a tree representation of a program, where each node is either a primitive or a compound expression. The AST is represented by the `OperatorNode` class in `abstract_syntax_tree.py`. My AST implementation includes functions to recursively evaluate the operator and its operands and also to generate a string representation of the program.
|
90 |
|
|
|
13 |
|
14 |
Completed for [CS252R: Program Synthesis](https://synthesis.metareflection.club/) at the Harvard John A. Paulson School of Engineering and Applied Sciences, taught in Fall 2023 by Prof. Nada Amin.
|
15 |
|
16 |
+
## π’ Live Demonstration
|
17 |
+
|
18 |
+
Live demonstration available at:
|
19 |
+
|
20 |
+
<div align="center">
|
21 |
+
<a href = 'https://huggingface.co/spaces/ayushnoori/program-synthesis'><strong>https://huggingface.co/spaces/ayushnoori/program-synthesis</strong></a>
|
22 |
+
</div>
|
23 |
+
|
24 |
## π οΈ Background
|
25 |
|
26 |
The following notes are adapted from [*Introduction to Program Synthesis*](http://people.csail.mit.edu/asolar/SynthesisCourse/TOC.htm) by Armando Solar-Lezama.
|
|
|
92 |
|
93 |
To add additional input-output examples, modify `examples.py`. Add a new key to the dictionary `example_set` and set the value to be a list of tuples.
|
94 |
|
95 |
+
## π Algorithmic Description
|
96 |
|
97 |
The most important data structure in this implementation is the abstract syntax tree (AST). The AST is a tree representation of a program, where each node is either a primitive or a compound expression. The AST is represented by the `OperatorNode` class in `abstract_syntax_tree.py`. My AST implementation includes functions to recursively evaluate the operator and its operands and also to generate a string representation of the program.
|
98 |
|
app.py
CHANGED
@@ -6,5 +6,54 @@ import argparse
|
|
6 |
import itertools
|
7 |
import time
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
# write streamlit title
|
10 |
-
st.title("Bottom-Up Enumerative Program Synthesis")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
import itertools
|
7 |
import time
|
8 |
|
9 |
+
# import examples and synthesizer
|
10 |
+
from arithmetic import *
|
11 |
+
from strings import *
|
12 |
+
from abstract_syntax_tree import *
|
13 |
+
from examples import example_set, check_examples
|
14 |
+
from synthesizer import
|
15 |
+
import config
|
16 |
+
|
17 |
# write streamlit title
|
18 |
+
st.title("Bottom-Up Enumerative Program Synthesis")
|
19 |
+
|
20 |
+
# create class to hold arguments instead of arg-parser
|
21 |
+
class Args(object):
|
22 |
+
pass
|
23 |
+
args = Args()
|
24 |
+
|
25 |
+
st.markdown('''
|
26 |
+
Completed for [CS252R: Program Synthesis](https://synthesis.metareflection.club/) at the Harvard John A. Paulson School of Engineering and Applied Sciences, taught in Fall 2023 by Prof. Nada Amin.
|
27 |
+
''')
|
28 |
+
|
29 |
+
st.header("π¨π½βπ» Project Description")
|
30 |
+
|
31 |
+
st.markdown('''
|
32 |
+
Here, we implement the non-ML subset of BUSTLE, the algorithm proposed by [Odena *et al.* (2021)](https://arxiv.org/abs/2007.14381). That is, we implement bottom-up enumerative search for simple compound expressions, excluding conditionals, recursion, and loops. The implementation is generic and flexibly supports multiple target languages. Arithmetic and string manipulations are natively supported, defined in `arithmetic.py` and `string.py`, respectively.
|
33 |
+
''')
|
34 |
+
|
35 |
+
st.header("π Algorithmic Description")
|
36 |
+
|
37 |
+
st.markdown('''
|
38 |
+
The most important data structure in this implementation is the abstract syntax tree (AST). The AST is a tree representation of a program, where each node is either a primitive or a compound expression. The AST is represented by the `OperatorNode` class in `abstract_syntax_tree.py`. My AST implementation includes functions to recursively evaluate the operator and its operands and also to generate a string representation of the program.
|
39 |
+
|
40 |
+
At program evaluation time, the AST is evaluated from the bottom up. That is, the operands are evaluated first, and then the operator is evaluated on the operands. This is implemented in the `evaluate` method of the `OperatorNode` class. In the case of integers, variable inputs are represented by the `IntegerVariable` class in `arithmetic.py`. When input is not `None`, input type checking and validation is performed by the `evaluate` function in this class.
|
41 |
+
|
42 |
+
The pseudocode for the bottom-up synthesis algorithm is reproduced below from [Odena *et al.* (2021)](https://arxiv.org/abs/2007.14381):
|
43 |
+
|
44 |
+
<img width="1494" alt="image" src="https://github.com/ayushnoori/program-synthesis/assets/43010710/117e7797-11af-4b72-b5f4-dda95eb2260f">
|
45 |
+
|
46 |
+
Note that we do not consider the lines colored in blue (*i.e.*, lines 4, 16, and 17). For details on machine learning-guided bottom-up search, please see the [BUSTLE paper](https://arxiv.org/abs/2007.14381).
|
47 |
+
''')
|
48 |
+
|
49 |
+
st.header("π« Contact")
|
50 |
+
|
51 |
+
st.markdown('''
|
52 |
+
Source code is publicly available via GitHub at [ayushnoori/program-synthesis](https://github.com/ayushnoori/program-synthesis). Any questions? Please feel free to reach out to Ayush Noori at [[email protected]](mailto:[email protected]).
|
53 |
+
''')
|
54 |
+
|
55 |
+
st.header("π References")
|
56 |
+
|
57 |
+
st.markdown('''
|
58 |
+
1. Odena, A. *et al.* [BUSTLE: Bottom-Up Program Synthesis Through Learning-Guided Exploration.](https://arxiv.org/abs/2007.14381) in *9th International Conference on Learning Representations*; 2021 May 3-7; Austria.
|
59 |
+
''')
|