fohy24
commited on
Commit
·
7d51cfd
1
Parent(s):
1ecc92a
added subtitle
Browse files
app.py
CHANGED
@@ -75,6 +75,8 @@ import gradio as gr
|
|
75 |
gr.Interface(fn=predict,
|
76 |
inputs=gr.Image(type="pil"),
|
77 |
outputs=gr.Label(),
|
78 |
-
examples=["pastel_yb.png", "piebald.png", "leopard_fire.png"]
|
79 |
-
|
|
|
|
|
80 |
|
|
|
75 |
gr.Interface(fn=predict,
|
76 |
inputs=gr.Image(type="pil"),
|
77 |
outputs=gr.Label(),
|
78 |
+
examples=["pastel_yb.png", "piebald.png", "leopard_fire.png"],
|
79 |
+
title='Ball Python Morph Identifier',
|
80 |
+
description="Upload or paste an image of your ball python to identify its morphs!"
|
81 |
+
).launch()
|
82 |
|