christopher commited on
Commit
8f8fa63
β€’
1 Parent(s): 86b1f2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -5,7 +5,8 @@ from streamlit_ace import st_ace
5
  st.set_page_config(page_title="TensorFlow Coder", page_icon='πŸ‘©β€πŸ’»', layout="wide")
6
 
7
  st.write("<center><h2>TensorFlow Coder</h2></center>",unsafe_allow_html=True)
8
- st.write("[TensorFlow Coder](https://github.com/google-research/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.")
 
9
 
10
  col1, col2, col3 = st.columns([5, 5, 3])
11
  with col1:
 
5
  st.set_page_config(page_title="TensorFlow Coder", page_icon='πŸ‘©β€πŸ’»', layout="wide")
6
 
7
  st.write("<center><h2>TensorFlow Coder</h2></center>",unsafe_allow_html=True)
8
+ st.write('#')
9
+ st.write("[TensorFlow Coder](https://github.com/google-research/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. Also checkout the TensorFlow [Blog post](https://blog.tensorflow.org/2020/08/introducing-tensorflow-coder-tool.html) for more information and examples.")
10
 
11
  col1, col2, col3 = st.columns([5, 5, 3])
12
  with col1: