MohammadAliMKH's picture
Upload 10 files
2b0f6fa
raw
history blame
No virus
658 Bytes
import gradio as gr
from predict import predict_gradio
title = "Mohammad Ali Food101 Classification🍔"
description = "This demo is a related to classification of 101 different foods"
demo = gr.Interface(
predict_gradio,
inputs = gr.Image(type="pil"),
outputs = [gr.Label(num_top_classes = 5 , label = "All Predictions in 5 most value predicted classes"),
gr.Label(num_top_classes = 1 , label = "Model Predicts Image as a")],
examples=['examples/3243342.jpg', 'examples/1652678.jpg', 'examples/1046933.jpg', 'examples/1840999.jpg', 'examples/168855.jpg'],
title = title,
description = description
)
demo.launch()