ayushnoori commited on
Commit
a397095
·
1 Parent(s): 4c46020

Add space files.

Browse files
Files changed (3) hide show
  1. README.md +11 -0
  2. app.py +10 -0
  3. requirements.txt +6 -0
README.md CHANGED
@@ -1,3 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
1
  # Bottom-Up Enumerative Program Synthesis
2
 
3
  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.
 
1
+ ---
2
+ title: Program Synthesis
3
+ emoji: 🤗
4
+ colorFrom: blue
5
+ colorTo: green
6
+ sdk: streamlit
7
+ sdk_version: 1.19.0
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
+
12
  # Bottom-Up Enumerative Program Synthesis
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.
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # standard imports
4
+ import numpy as np
5
+ import argparse
6
+ import itertools
7
+ import time
8
+
9
+ # write streamlit title
10
+ st.title("Bottom-Up Enumerative Program Synthesis")
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ numpy
2
+ argparse
3
+ itertools
4
+ time
5
+ os
6
+ pathlib