christopher commited on
Commit
5710bd9
β€’
1 Parent(s): 06ed65c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -6,6 +6,19 @@ from contextlib import redirect_stdout
6
  from streamlit_ace import st_ace
7
  st.set_page_config(page_icon='πŸ‘©β€πŸ’»', layout="wide", initial_sidebar_state="collapsed")
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  col1, col2, col3 = st.columns([5, 5, 3])
10
  with col1:
11
  st.write('#### Inputs')
 
6
  from streamlit_ace import st_ace
7
  st.set_page_config(page_icon='πŸ‘©β€πŸ’»', layout="wide", initial_sidebar_state="collapsed")
8
 
9
+ st.write("# [TensorFlow Coder](https://github.com/google-research/tensorflow-coder)")
10
+ st.write("TensorFlow Coder is a program synthesis tool developed at Google Research by Kensen Shi, David Bieber and Rishabh Singh. It takes an example input-output tensor example and attempts to find the combination of TensorFlow ops that capture that transformation. Please cite the authors' paper if you use their tool in your work")
11
+
12
+ st.write('''
13
+ @article{TFCoder,
14
+ title={{TF-Coder}: Program Synthesis for Tensor Manipulations},
15
+ author={Kensen Shi and David Bieber and Rishabh Singh},
16
+ year={2020},
17
+ url={https://arxiv.org/abs/2003.09040},
18
+ archivePrefix={arXiv},
19
+ eprint={2003.09040}
20
+ }
21
+ ''')
22
  col1, col2, col3 = st.columns([5, 5, 3])
23
  with col1:
24
  st.write('#### Inputs')