Spaces:
Runtime error
Runtime error
add examples
Browse files
3.jpg
ADDED
4.jpg
ADDED
app.py
CHANGED
@@ -78,9 +78,13 @@ article = "<p style='text-align: center'><a href='https://ieeexplore.ieee.org/do
|
|
78 |
iface = gr.Interface(
|
79 |
fn=greet,
|
80 |
inputs=image,
|
81 |
-
outputs="text"
|
82 |
title = title,
|
83 |
description = description
|
84 |
article=article
|
|
|
|
|
|
|
|
|
85 |
)
|
86 |
iface.launch()
|
|
|
78 |
iface = gr.Interface(
|
79 |
fn=greet,
|
80 |
inputs=image,
|
81 |
+
outputs="text",
|
82 |
title = title,
|
83 |
description = description
|
84 |
article=article
|
85 |
+
examples = [
|
86 |
+
"3.jpg",
|
87 |
+
"4.jpg",
|
88 |
+
]
|
89 |
)
|
90 |
iface.launch()
|