Spaces:
Running
Running
Commit
Β·
96f874d
1
Parent(s):
c4eaa58
Update app.py
Browse files
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('
|
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('
|
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('
|
18 |
constants = st_ace(placeholder="Optional list of scalar constants", value="[]", language="python", theme="solarized_dark", auto_update=True)
|
19 |
|
20 |
-
|
|
|
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)
|