christopher commited on
Commit
3157f2b
·
1 Parent(s): f6046ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,4 +1,4 @@
1
- # https://github.com/google-research/tensorflow-coder/blob/master/tf_coder/tf_coder_main.py
2
  import streamlit as st
3
  from tf_coder.value_search import colab_interface, value_search_settings
4
  from streamlit_ace import st_ace
@@ -18,7 +18,7 @@ with col3:
18
  st.write('#### Constants')
19
  constants = st_ace(placeholder="Optional list of scalar constants", value="[]", language="python", theme="solarized_dark", auto_update=True)
20
 
21
- st.write("#### D1escription")
22
  description = st.text_input(label="", placeholder="An optional natural language description of the operation", value="add two vectors with broadcasting to get a matrix")
23
  with st.expander("⚙️ Search Options", expanded=False):
24
  settings_kwargs = dict()
 
1
+ # Based on the following code demo: https://github.com/google-research/tensorflow-coder/blob/master/tf_coder/tf_coder_main.py
2
  import streamlit as st
3
  from tf_coder.value_search import colab_interface, value_search_settings
4
  from streamlit_ace import st_ace
 
18
  st.write('#### Constants')
19
  constants = st_ace(placeholder="Optional list of scalar constants", value="[]", language="python", theme="solarized_dark", auto_update=True)
20
 
21
+ st.write("#### Description")
22
  description = st.text_input(label="", placeholder="An optional natural language description of the operation", value="add two vectors with broadcasting to get a matrix")
23
  with st.expander("⚙️ Search Options", expanded=False):
24
  settings_kwargs = dict()