yupikopi commited on
Commit
97fbd40
1 Parent(s): 827a568

Create app.py

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