Spaces:
Running
Running
Commit
·
d222738
1
Parent(s):
12bcda5
Update app.py
Browse files
app.py
CHANGED
@@ -5,10 +5,8 @@ from tf_coder.value_search import colab_interface
|
|
5 |
from tf_coder.value_search import value_search_settings as settings_module
|
6 |
|
7 |
inputs = st.text_area('A dict mapping input variable names to input tensors.', placeholder='''
|
8 |
-
|
9 |
-
|
10 |
-
'cols': [1, 2, 3, 4],
|
11 |
-
}
|
12 |
''')
|
13 |
output = st.text_area('The corresponding output tensor.', placeholder='''
|
14 |
[[11, 12, 13, 14],
|
@@ -16,6 +14,6 @@ output = st.text_area('The corresponding output tensor.', placeholder='''
|
|
16 |
[31, 32, 33, 34]]
|
17 |
''')
|
18 |
|
19 |
-
constants = st.
|
20 |
|
21 |
description = st.text_input('An English natural language description of the tensor manipulation', placeholder='Add two vectors with broadcasting to get a matrix')
|
|
|
5 |
from tf_coder.value_search import value_search_settings as settings_module
|
6 |
|
7 |
inputs = st.text_area('A dict mapping input variable names to input tensors.', placeholder='''
|
8 |
+
{'rows': [10, 20, 30],
|
9 |
+
'cols': [1, 2, 3, 4],}
|
|
|
|
|
10 |
''')
|
11 |
output = st.text_area('The corresponding output tensor.', placeholder='''
|
12 |
[[11, 12, 13, 14],
|
|
|
14 |
[31, 32, 33, 34]]
|
15 |
''')
|
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')
|