Another attempt
Browse files
app.py
CHANGED
@@ -22,7 +22,8 @@ def classify_image(img):
|
|
22 |
|
23 |
image = gr.inputs.Image(shape=(192, 192))
|
24 |
label = gr.outputs.Label()
|
25 |
-
examples =
|
|
|
26 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,
|
27 |
itle = "Dog/Cat Classifier",
|
28 |
description = "A dog/cat classifier.",
|
|
|
22 |
|
23 |
image = gr.inputs.Image(shape=(192, 192))
|
24 |
label = gr.outputs.Label()
|
25 |
+
examples = str((project_dir / "examples").absolute())
|
26 |
+
print(examples)
|
27 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,
|
28 |
itle = "Dog/Cat Classifier",
|
29 |
description = "A dog/cat classifier.",
|