CoolFace
Apppublic

devdatanalytics/Irishpotato_Commonbean

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
app.py21 linesDownload Raw Back to root
1import gradio as gr2from fastai.vision.all import *3import skimage4 5learn = load_learner('model.pkl')6 7labels = learn.dls.vocab8def predict(img):9    img = PILImage.create(img)10    pred,pred_idx,probs = learn.predict(img)11    return {labels[i]: float(probs[i]) for i in range(len(labels))}12 13#title = "Irish Potato and Common beans diseases classfier"14#description = "An app for Irish Potato and Common beans diseases Classisfication"15#article="<p style='text-align: center'>This app detects and categorizes diseases in Irish Potatoes and Common Beans, such as Common Bean Anthracnose, Bean Rust, Early Blight, and Late Blight. If the app labels an image as <b>other</b>, it implies the uploaded image is not of a leaf, or the camera angle makes identification challenging for the model. Please refer to the examples and upload a clear, close-up picture of the leaf.</p>"16examples = ['image2.jpeg', 'image3.jpg']17interpretation='default'18enable_queue=True19 20gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label(num_top_classes=3),examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch(share=True)21