christopher commited on
Commit
fc108b8
Β·
1 Parent(s): e71d3b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -6,8 +6,8 @@ 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
- 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:
@@ -20,7 +20,7 @@ with col3:
20
  st.write('#### Constants')
21
  constants = st_ace(placeholder="Optional list of scalar constants", value="[]", language="python", theme="solarized_dark", auto_update=True)
22
 
23
- st.write("#### Description")
24
  description = st.text_input(label="", placeholder="An optional natural language description of the operation", value="add two vectors with broadcasting to get a matrix")
25
  with st.expander("βš™οΈ Search Options", expanded=False):
26
  settings_kwargs = dict()
 
6
  from streamlit_ace import st_ace
7
  st.set_page_config(page_icon='πŸ‘©β€πŸ’»', layout="wide", initial_sidebar_state="collapsed")
8
 
9
+ st.write("<h2> TensorFlow Coder </h2>")
10
+ 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.")
11
 
12
  col1, col2, col3 = st.columns([5, 5, 3])
13
  with col1:
 
20
  st.write('#### Constants')
21
  constants = st_ace(placeholder="Optional list of scalar constants", value="[]", language="python", theme="solarized_dark", auto_update=True)
22
 
23
+ st.write("#### D1escription")
24
  description = st.text_input(label="", placeholder="An optional natural language description of the operation", value="add two vectors with broadcasting to get a matrix")
25
  with st.expander("βš™οΈ Search Options", expanded=False):
26
  settings_kwargs = dict()