Spaces:
Sleeping
Sleeping
File size: 942 Bytes
4d953a5 3104fd0 4d953a5 3104fd0 4d953a5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
import gradio as gr
#from transformers import pipeline
from tensorflow.keras.models import load_model
#pipe = pipeline(task="image-classification", model="SuperSecureHuman/Flower-CNN")
model = load_model('./model.h5')
def predict_image(img):
img_4d = img.reshape(-1, 224, 224, 3)
prediction = model.predict(img_4d)[0]
return {class_names[i]: float(prediction[i]) for i in range(10)}
class_names = ['Crescentia_Cujete', 'Fiddle_Wood', 'Gold_Apple', 'Hill_Mango', 'Indian_Tulip_Tree', 'Mahagony', 'Pala_Indigo_Plant', 'Spanish_Cherry', 'Teak', 'Yellow_Trumpet']
image = gr.inputs.Image(shape=(224, 224))
label = gr.outputs.Label(num_top_classes=10)
gr.Interface(fn=predict_image,
title="Tree Classification",
description="Tree CNN",
inputs=image,
outputs=label,
live=True,
interpretation='default',
allow_flagging="never").launch()
|