File size: 280 Bytes
bd8472c |
1 2 3 4 5 6 7 8 9 |
from transformers import pipeline
from PIL import Image
# Function to classify food using the pipeline
def classify_food_with_pipeline(image: Image):
pipe = pipeline("image-classification", model="nateraw/food")
result = pipe(image)
return result[0]["label"]
|