Andyx commited on
Commit
96f646b
·
1 Parent(s): a75fdac
Files changed (1) hide show
  1. app.py +5 -7
app.py CHANGED
@@ -92,12 +92,6 @@ def img_pad(x, h_r=0, w_r=0):
92
 
93
  return y
94
 
95
- img1 = Image.open('001.jpg').convert('RGB')
96
- img2 = Image.open('002.jpg').convert('RGB')
97
- img3 = Image.open('003.jpg').convert('RGB')
98
- img4 = Image.open('004.jpg').convert('RGB')
99
- img5 = Image.open('005.jpg').convert('RGB')
100
-
101
 
102
  iface1 = gr.Interface(fn=predict1,
103
  inputs=gr.inputs.Image(type="pil"),
@@ -109,7 +103,11 @@ iface2 = gr.Interface(fn=predict2,
109
 
110
  iface_all = gr.mix.Parallel(
111
  iface1, iface2,
112
- examples=[img1, img2, img3, img4, img5]
 
 
 
 
113
  )
114
 
115
  iface_all.launch()
 
92
 
93
  return y
94
 
 
 
 
 
 
 
95
 
96
  iface1 = gr.Interface(fn=predict1,
97
  inputs=gr.inputs.Image(type="pil"),
 
103
 
104
  iface_all = gr.mix.Parallel(
105
  iface1, iface2,
106
+ examples=['001.jpg',
107
+ '002.jpg',
108
+ '003.jpg',
109
+ '004.jpg',
110
+ '005.jpg']
111
  )
112
 
113
  iface_all.launch()