Spaces:
Running
Running
Commit
·
52d9c79
1
Parent(s):
070605d
Update app.py
Browse files
app.py
CHANGED
@@ -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(
|
35 |
stdout = buf.getvalue()
|
36 |
st.code(stdout, language='bash')
|
|
|
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([[11, 12, 13, 14],[21, 22, 23, 24],[31, 32, 33, 34]], constants, description, settings)
|
35 |
stdout = buf.getvalue()
|
36 |
st.code(stdout, language='bash')
|