Spaces:
Running
Running
Commit
·
12bcda5
1
Parent(s):
b92bf12
Update app.py
Browse files
app.py
CHANGED
@@ -3,3 +3,19 @@ import numpy as np
|
|
3 |
import tensorflow as tf
|
4 |
from tf_coder.value_search import colab_interface
|
5 |
from tf_coder.value_search import value_search_settings as settings_module
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
import tensorflow as tf
|
4 |
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 |
+
'rows': [10, 20, 30],
|
10 |
+
'cols': [1, 2, 3, 4],
|
11 |
+
}
|
12 |
+
''')
|
13 |
+
output = st.text_area('The corresponding output tensor.', placeholder='''
|
14 |
+
[[11, 12, 13, 14],
|
15 |
+
[21, 22, 23, 24],
|
16 |
+
[31, 32, 33, 34]]
|
17 |
+
''')
|
18 |
+
|
19 |
+
constants = st.text_area('A list of relevant scalar constants, if any.', placeholder='[]' )
|
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')
|