Spaces:
Running
Running
Commit
·
5109428
1
Parent(s):
b08763f
Update app.py
Browse files
app.py
CHANGED
@@ -31,6 +31,6 @@ with io.StringIO() as buf, redirect_stdout(buf):
|
|
31 |
# An English description of the tensor manipulation.
|
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(
|
35 |
stdout = buf.getvalue()
|
36 |
st.code(stdout, language='bash')
|
|
|
31 |
# An English description of the tensor manipulation.
|
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(inputs, output, constants, description, settings)
|
35 |
stdout = buf.getvalue()
|
36 |
st.code(stdout, language='bash')
|