Spaces:
Sleeping
Sleeping
File size: 508 Bytes
e1584c5 9f6857c e1584c5 5426da5 90afdc9 e1584c5 9f6857c e1584c5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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() |