christopher commited on
Commit
7d34933
·
1 Parent(s): 3d69a91

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -16,4 +16,14 @@ output = st.text_area('The corresponding output tensor.', placeholder='''
16
 
17
  constants = st.text_input('A list of relevant scalar constants, if any.', placeholder='[]' )
18
 
19
- description = st.text_input('An English natural language description of the tensor manipulation', placeholder='Add two vectors with broadcasting to get a matrix')
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  constants = st.text_input('A list of relevant scalar constants, if any.', placeholder='[]' )
18
 
19
+ description = st.text_input('An English natural language description of the tensor manipulation', placeholder='Add two vectors with broadcasting to get a matrix')
20
+
21
+ settings = settings_module.from_dict({
22
+ 'timeout': 300,
23
+ 'only_minimal_solutions': False,
24
+ 'max_solutions': 1,
25
+ 'require_all_inputs_used': True,
26
+ 'require_one_input_used': False,
27
+ })
28
+
29
+ st.write(colab_interface.run_value_search_from_colab(inputs, output, constants, description, settings))