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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -1,10 +1,8 @@
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
- import io
5
- 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("<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.")
 
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
5
+ st.set_page_config(page_icon='πŸ‘©β€πŸ’»', layout="wide")
6
 
7
  st.write("<h2> TensorFlow Coder </h2>")
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.")