Dinoking commited on
Commit
8763735
·
1 Parent(s): 88a0242

Create new file

Browse files
Files changed (1) hide show
  1. app.py +28 -0
app.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import tensorflow as tf
3
+ import numpy as np
4
+ from PIL import Image
5
+ import tensorflow.keras as keras
6
+
7
+ from tensorflow.keras.models import load_model
8
+
9
+ # load model
10
+ model = load_model('model18.h5')
11
+
12
+ classnames = ['battery','biological','brown-glass','cardboard','clothes','green-glass','metal','paper','plastic','shoes','trash','white-glass']
13
+
14
+
15
+
16
+ def predict_image(img):
17
+ img_4d=img.reshape(-1,224, 224,3)
18
+ prediction=model.predict(img_4d)[0]
19
+ return {classnames[i]: float(prediction[i]) for i in range(12)}
20
+
21
+
22
+
23
+ image = gr.inputs.Image(shape=(224, 224))
24
+ label = gr.outputs.Label(num_top_classes=3)
25
+ article="<p style='text-align: center'>Made by Aditya Narendra with 🖤</p>"
26
+
27
+ gr.Interface(fn=predict_image, inputs=image, title="Garbage Classifier",
28
+ description="This is a Garbage Classification Model Trained using MobileNetV2.Deployed to Hugging Faces using Gradio.",outputs=label,article=article,interpretation='default').launch(share="True")