fix
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ 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 |
-
|
29 |
description = "A dog/cat classifier.",
|
30 |
examples=examples,
|
31 |
interpretation="default")
|
|
|
25 |
examples = str((project_dir / "examples").absolute())
|
26 |
print(examples)
|
27 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,
|
28 |
+
title = "Dog/Cat Classifier",
|
29 |
description = "A dog/cat classifier.",
|
30 |
examples=examples,
|
31 |
interpretation="default")
|