christopher commited on
Commit
96f874d
Β·
1 Parent(s): c4eaa58

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -8,16 +8,17 @@ st.set_page_config(page_icon='πŸ‘©β€πŸ’»', layout="wide", initial_sidebar_state
8
 
9
  col1, col2, col3 = st.columns([5, 5, 3])
10
  with col1:
11
- st.write('### Inputs')
12
  inputs = st_ace(placeholder="The input tensor(s) specified as a dictionary", value="{'rows': [10, 20, 30],\n'cols': [1,2,3,4]}", language="python", theme="solarized_dark", auto_update=True)
13
  with col2:
14
- st.write('### Output')
15
  output = st_ace(placeholder="The output tensor", value="[[11, 12, 13, 14],\n[21, 22, 23, 24],\n[31, 32, 33, 34]]", language="python", theme="solarized_dark", auto_update=True)
16
  with col3:
17
- st.write('### Constants')
18
  constants = st_ace(placeholder="Optional list of scalar constants", value="[]", language="python", theme="solarized_dark", auto_update=True)
19
 
20
- description = st.text_input(label="Description", placeholder="An optional natural language description of the operation", value="add two vectors with broadcasting to get a matrix")
 
21
  st.sidebar.header("Settings:")
22
  settings_kwargs = dict()
23
  settings_kwargs["require_all_inputs_used"] = st.sidebar.checkbox("Require All Inputs", value=True)
 
8
 
9
  col1, col2, col3 = st.columns([5, 5, 3])
10
  with col1:
11
+ st.write('#### Inputs')
12
  inputs = st_ace(placeholder="The input tensor(s) specified as a dictionary", value="{'rows': [10, 20, 30],\n'cols': [1,2,3,4]}", language="python", theme="solarized_dark", auto_update=True)
13
  with col2:
14
+ st.write('#### Output')
15
  output = st_ace(placeholder="The output tensor", value="[[11, 12, 13, 14],\n[21, 22, 23, 24],\n[31, 32, 33, 34]]", language="python", theme="solarized_dark", auto_update=True)
16
  with col3:
17
+ st.write('#### Constants')
18
  constants = st_ace(placeholder="Optional list of scalar constants", value="[]", language="python", theme="solarized_dark", auto_update=True)
19
 
20
+ st.write("#### Description")
21
+ description = st.text_input(label="", placeholder="An optional natural language description of the operation", value="add two vectors with broadcasting to get a matrix")
22
  st.sidebar.header("Settings:")
23
  settings_kwargs = dict()
24
  settings_kwargs["require_all_inputs_used"] = st.sidebar.checkbox("Require All Inputs", value=True)