Spaces:
Sleeping
Sleeping
diegulio
commited on
Commit
·
a4fd57a
1
Parent(s):
8dcb3da
🐶🧡🐱
Browse files
app.py
CHANGED
@@ -33,6 +33,8 @@ def predict(x):
|
|
33 |
return confidences
|
34 |
|
35 |
gr.Interface(fn=predict,
|
|
|
|
|
36 |
inputs=gr.Image(type="pil"),
|
37 |
outputs=gr.Label(num_top_classes=5),
|
38 |
examples=["statics/pug.jpg", "statics/poodle.jpg", "statics/cat.jpg", "statics/no.jpg"]).launch()
|
|
|
33 |
return confidences
|
34 |
|
35 |
gr.Interface(fn=predict,
|
36 |
+
title = "Breed Classifier 🐶🧡🐱",
|
37 |
+
description = "Clasifica una imagen entre: 120 razas, gato o ninguno!",
|
38 |
inputs=gr.Image(type="pil"),
|
39 |
outputs=gr.Label(num_top_classes=5),
|
40 |
examples=["statics/pug.jpg", "statics/poodle.jpg", "statics/cat.jpg", "statics/no.jpg"]).launch()
|