christopher commited on
Commit
322466c
Β·
1 Parent(s): 0d3fb01

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ st.set_page_config(page_icon='πŸ‘©β€πŸ’»', layout="wide")
9
 
10
  #inputs = st.text_area('The input tensor(s) specified as key-value pairs', placeholder="{'rows': [10, 20, 30],'cols': [1,2,3,4]}")
11
  inputs = st_ace(value="{'rows': [10, 20, 30],'cols': [1,2,3,4]}", language="python", theme="solarized_dark")
12
- st.write(type(inputs))
13
  st.sidebar.header("Settings:")
14
  settings_kwargs = dict()
15
  settings_kwargs["require_all_inputs_used"] = st.sidebar.checkbox("Require All Inputs", value=True)
 
9
 
10
  #inputs = st.text_area('The input tensor(s) specified as key-value pairs', placeholder="{'rows': [10, 20, 30],'cols': [1,2,3,4]}")
11
  inputs = st_ace(value="{'rows': [10, 20, 30],'cols': [1,2,3,4]}", language="python", theme="solarized_dark")
12
+ st.write(type(eval(inputs)))
13
  st.sidebar.header("Settings:")
14
  settings_kwargs = dict()
15
  settings_kwargs["require_all_inputs_used"] = st.sidebar.checkbox("Require All Inputs", value=True)