Spaces:
Running
Running
Commit
Β·
070605d
1
Parent(s):
7aa8186
Update app.py
Browse files
app.py
CHANGED
@@ -6,9 +6,9 @@ from contextlib import redirect_stdout
|
|
6 |
from streamlit_ace import st_ace
|
7 |
st.set_page_config(page_icon='π©βπ»', layout="wide")
|
8 |
|
9 |
-
st.write('
|
10 |
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")
|
11 |
-
st.write('
|
12 |
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")
|
13 |
|
14 |
st.sidebar.header("Settings:")
|
@@ -31,6 +31,6 @@ with io.StringIO() as buf, redirect_stdout(buf):
|
|
31 |
|
32 |
description = 'add two vectors with broadcasting to get a matrix'
|
33 |
inputs = {'rows': [10, 20, 30],'cols': [1,2,3,4]}
|
34 |
-
results = colab_interface.run_value_search_from_colab(eval(inputs), eval(output), constants, description, settings)
|
35 |
stdout = buf.getvalue()
|
36 |
st.code(stdout, language='bash')
|
|
|
6 |
from streamlit_ace import st_ace
|
7 |
st.set_page_config(page_icon='π©βπ»', layout="wide")
|
8 |
|
9 |
+
st.write('### Inputs')
|
10 |
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")
|
11 |
+
st.write('### Outputs')
|
12 |
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")
|
13 |
|
14 |
st.sidebar.header("Settings:")
|
|
|
31 |
|
32 |
description = 'add two vectors with broadcasting to get a matrix'
|
33 |
inputs = {'rows': [10, 20, 30],'cols': [1,2,3,4]}
|
34 |
+
results = colab_interface.run_value_search_from_colab(eval(inputs), eval(output.replace('\n',''), constants, description, settings)
|
35 |
stdout = buf.getvalue()
|
36 |
st.code(stdout, language='bash')
|