Create app.py
Browse files
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('model_10.h5')
|
11 |
+
|
12 |
+
classnames = ['Pikachu','Raichu','Pichu']
|
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(3)}
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
image = gr.inputs.Image(shape=(224, 224))
|
24 |
+
label = gr.outputs.Label(num_top_classes=3)
|
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()
|