Spaces:
Running
Running
Commit
·
ca2ffa3
1
Parent(s):
6caedd6
Add application files
Browse files
app.py
CHANGED
@@ -52,7 +52,7 @@ def greet(name1, name2):
|
|
52 |
output
|
53 |
'''
|
54 |
data = {
|
55 |
-
"Name": [
|
56 |
"Age": [30, 25, 35],
|
57 |
"City": ["New York", "San Francisco", "Los Angeles"]
|
58 |
}
|
@@ -78,5 +78,6 @@ input_boxes = [
|
|
78 |
# iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
|
79 |
iface = gr.Interface(fn=greet, inputs=input_boxes, outputs=gr.outputs.HTML(label="Output Table"))
|
80 |
|
|
|
81 |
iface.launch()
|
82 |
|
|
|
52 |
output
|
53 |
'''
|
54 |
data = {
|
55 |
+
"Name": ['fawef', 'fseaf', 'asef'],
|
56 |
"Age": [30, 25, 35],
|
57 |
"City": ["New York", "San Francisco", "Los Angeles"]
|
58 |
}
|
|
|
78 |
# iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
|
79 |
iface = gr.Interface(fn=greet, inputs=input_boxes, outputs=gr.outputs.HTML(label="Output Table"))
|
80 |
|
81 |
+
|
82 |
iface.launch()
|
83 |
|