Update app.py
Browse files
app.py
CHANGED
@@ -22,9 +22,7 @@ def predict_image(img):
|
|
22 |
|
23 |
image = gr.inputs.Image(shape=(224, 224))
|
24 |
label = gr.outputs.Label(num_top_classes=2)
|
25 |
-
article="<p style='text-align: center'>Made by Aditya Narendra with 🖤</p>"
|
26 |
-
examples = ['battery.jpeg','cardboard.jpeg','paper.jpg','clothes.jpeg','metal.jpg','plastic.jpg','shoes.jpg']
|
27 |
|
28 |
|
29 |
gr.Interface(fn=predict_image, inputs=image, title="Garbage Classifier V3",
|
30 |
-
description="
|
|
|
22 |
|
23 |
image = gr.inputs.Image(shape=(224, 224))
|
24 |
label = gr.outputs.Label(num_top_classes=2)
|
|
|
|
|
25 |
|
26 |
|
27 |
gr.Interface(fn=predict_image, inputs=image, title="Garbage Classifier V3",
|
28 |
+
description="ThiFaces using Gradio.",outputs=label,enable_queue=True,interpretation='default').launch(share="True")
|