leakyrelu commited on
Commit
a097203
1 Parent(s): d4696d2

add examples

Browse files
Files changed (3) hide show
  1. 3.jpg +0 -0
  2. 4.jpg +0 -0
  3. app.py +5 -1
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()