Spaces:
Runtime error
Runtime error
Commit
·
0d173c0
1
Parent(s):
fea06e5
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,6 +29,6 @@ with io.StringIO() as buf, redirect_stdout(buf):
|
|
| 29 |
|
| 30 |
# An English description of the tensor manipulation.
|
| 31 |
description = 'add two vectors with broadcasting to get a matrix'
|
| 32 |
-
results = colab_interface.run_value_search_from_colab(inputs, output, constants, description, settings)
|
| 33 |
stdout = buf.getvalue()
|
| 34 |
st.code(stdout, language='bash')
|
|
|
|
| 29 |
|
| 30 |
# An English description of the tensor manipulation.
|
| 31 |
description = 'add two vectors with broadcasting to get a matrix'
|
| 32 |
+
results = colab_interface.run_value_search_from_colab(eval(inputs), output, constants, description, settings)
|
| 33 |
stdout = buf.getvalue()
|
| 34 |
st.code(stdout, language='bash')
|