Spaces:
Sleeping
Sleeping
updated the examples
Browse files
app.py
CHANGED
@@ -36,11 +36,18 @@ image = gr.inputs.Image(shape=(192, 192))
|
|
36 |
label = gr.outputs.Label()
|
37 |
|
38 |
examples = [
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
]
|
45 |
|
46 |
iface = gr.Interface(fn=recognize_image, inputs=image, outputs=label, examples=examples)
|
|
|
36 |
label = gr.outputs.Label()
|
37 |
|
38 |
examples = [
|
39 |
+
'test_images/test_00.jpg',
|
40 |
+
'test_images/cornish_cross_test_01.jpg',
|
41 |
+
'test_images/frizzle_test_03.jpg',
|
42 |
+
'test_images/polish_test_05.jpg',
|
43 |
+
'test_images/blue_laced_red_wyandotte_test_09.jpg',
|
44 |
+
'test_images/black_sex_link_test_15.jpeg',
|
45 |
+
'test_images/silver laced wyandotte_test_13.jpg',
|
46 |
+
'test_images/silkie_test_10.jpg',
|
47 |
+
'test_images/new_hampshire_test_11.jpg',
|
48 |
+
'test_images/turken_test_14.jpg'
|
49 |
+
|
50 |
+
|
51 |
]
|
52 |
|
53 |
iface = gr.Interface(fn=recognize_image, inputs=image, outputs=label, examples=examples)
|