Dinoking commited on
Commit
6b68ec6
·
1 Parent(s): ef958f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -38,6 +38,9 @@ sample_images = [
38
 
39
  image = gr.inputs.Image(shape=(298, 384))
40
  label = gr.outputs.Label(num_top_classes=3)
 
 
 
41
 
42
  gr.Interface(fn=predict_image, inputs=image, title="Garbage Classifier",
43
- description="This is the Model uploaded on Github trained on Dataset 11.This is just for a demo to test the deployment of Tensorflow Based Models into Gradio + Hugging Faces.",outputs=label,examples=sample_images,interpretation='default').launch(debug='True')
 
38
 
39
  image = gr.inputs.Image(shape=(298, 384))
40
  label = gr.outputs.Label(num_top_classes=3)
41
+ enable_queue=True
42
+
43
+ article="<p style='text-align: center'>Made by Aditya Narendra with 🖤</p>"
44
 
45
  gr.Interface(fn=predict_image, inputs=image, title="Garbage Classifier",
46
+ description="This is a Garbage Classifier based on Satish's Model.Deployed to Hugging Faces Using Gradio.",outputs=label,article=article,examples=sample_images,enable_queue=enable_queue,interpretation='default').launch(debug='True')