christopher commited on
Commit
b08763f
·
1 Parent(s): 8bb6bcc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -30,6 +30,7 @@ with io.StringIO() as buf, redirect_stdout(buf):
30
 
31
  # An English description of the tensor manipulation.
32
  description = 'add two vectors with broadcasting to get a matrix'
 
33
  results = colab_interface.run_value_search_from_colab(eval(inputs), output, constants, description, settings)
34
  stdout = buf.getvalue()
35
  st.code(stdout, language='bash')
 
30
 
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(eval(inputs), output, constants, description, settings)
35
  stdout = buf.getvalue()
36
  st.code(stdout, language='bash')