amit-asl
commited on
Commit
·
94885b9
1
Parent(s):
856a0f1
fix naming
Browse files
app.py
CHANGED
@@ -19,13 +19,13 @@ def create_interface():
|
|
19 |
fn=predict_image,
|
20 |
inputs=image_input,
|
21 |
outputs=output,
|
22 |
-
title="
|
23 |
-
description="Upload an image to
|
24 |
)
|
25 |
return iface
|
26 |
|
27 |
if __name__ == "__main__":
|
28 |
iface = create_interface()
|
29 |
-
iface.launch()
|
30 |
|
31 |
|
|
|
19 |
fn=predict_image,
|
20 |
inputs=image_input,
|
21 |
outputs=output,
|
22 |
+
title="Animal Classifier",
|
23 |
+
description="Upload an image to identify the animal class."
|
24 |
)
|
25 |
return iface
|
26 |
|
27 |
if __name__ == "__main__":
|
28 |
iface = create_interface()
|
29 |
+
iface.launch(share=True)
|
30 |
|
31 |
|