Spaces:
Runtime error
Runtime error
Commit
Β·
3682138
1
Parent(s):
5109428
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,10 +3,9 @@ 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 |
|
| 7 |
inputs = st.text_area('The input tensor(s) specified as key-value pairs', placeholder="{'rows': [10, 20, 30],'cols': [1,2,3,4]}")
|
| 8 |
-
# The single desired output tensor.
|
| 9 |
-
|
| 10 |
st.sidebar.header("Settings:")
|
| 11 |
settings_kwargs = dict()
|
| 12 |
settings_kwargs["require_all_inputs_used"] = st.sidebar.checkbox("Require All Inputs", value=True)
|
|
|
|
| 3 |
from tf_coder.value_search import colab_interface, value_search_settings
|
| 4 |
import io
|
| 5 |
from contextlib import redirect_stdout
|
| 6 |
+
st.set_page_config(page_icon='π©βπ»', layout="wide"
|
| 7 |
|
| 8 |
inputs = st.text_area('The input tensor(s) specified as key-value pairs', placeholder="{'rows': [10, 20, 30],'cols': [1,2,3,4]}")
|
|
|
|
|
|
|
| 9 |
st.sidebar.header("Settings:")
|
| 10 |
settings_kwargs = dict()
|
| 11 |
settings_kwargs["require_all_inputs_used"] = st.sidebar.checkbox("Require All Inputs", value=True)
|