food-classifer / app.py
Destrobot's picture
Update app.py
90afdc9 verified
raw
history blame contribute delete
508 Bytes
import gradio as gr
import torch
from transformers import pipeline
model_id = "SABR22/food_models"
pipe = pipeline("image-classification", model="Shresthadev403/food-image-classification")
def classify_food(image):
image = pipe(image)
return image[0]['label']
interface = gr.Interface(
fn=classify_food,
inputs=gr.Image(type="pil"),
outputs=gr.Textbox(),
title="Food Image Classification",
description="Upload a food image and the model will classify it."
)
interface.launch()