Spaces:
Running
Running
Commit
Β·
e71d3b2
1
Parent(s):
5710bd9
Update app.py
Browse files
app.py
CHANGED
@@ -7,18 +7,8 @@ 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')
|
|
|
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](https://github.com/google-research/tensorflow-coder/blob/master/README.md#citation) if you use their tool in your work. This demo is a work in progress.")
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
col1, col2, col3 = st.columns([5, 5, 3])
|
13 |
with col1:
|
14 |
st.write('#### Inputs')
|