vobecant
commited on
Commit
·
999b149
1
Parent(s):
fa501b7
Initial commit.
Browse files
app.py
CHANGED
@@ -182,6 +182,9 @@ examples = ['examples/img5.jpeg', 'examples/100.jpeg', 'examples/39076.jpeg', 'e
|
|
182 |
iface = gr.Interface(predict, [gr.inputs.Image(type='filepath'), gr.inputs.Checkbox(label="Cityscapes mapping")],
|
183 |
"image", title=title, description=description,
|
184 |
examples=[examples, []])
|
|
|
|
|
|
|
185 |
|
186 |
# iface.launch(show_error=True, share=True)
|
187 |
iface.launch(show_error=True)
|
|
|
182 |
iface = gr.Interface(predict, [gr.inputs.Image(type='filepath'), gr.inputs.Checkbox(label="Cityscapes mapping")],
|
183 |
"image", title=title, description=description,
|
184 |
examples=[examples, []])
|
185 |
+
iface = gr.Interface(predict, gr.inputs.Image(type='filepath'),
|
186 |
+
"image", title=title, description=description,
|
187 |
+
examples=examples)
|
188 |
|
189 |
# iface.launch(show_error=True, share=True)
|
190 |
iface.launch(show_error=True)
|