Spaces:
Sleeping
Sleeping
File size: 1,016 Bytes
7078ca9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
import gradio as gr
from transformers import AutoModelForImageClassification, AutoProcessor
import torch
# Load the model and processor
model_name = "DeathDaDev/Materializer"
processor = AutoProcessor.from_pretrained(model_name)
model = AutoModelForImageClassification.from_pretrained(model_name)
# Define the prediction function
def classify_image(image):
# Preprocess the image
inputs = processor(images=image, return_tensors="pt")
# Perform inference
with torch.no_grad():
logits = model(**inputs).logits
# Get the predicted class
predicted_class_idx = logits.argmax(-1).item()
return model.config.id2label[predicted_class_idx]
# Create the Gradio interface
iface = gr.Interface(
fn=classify_image,
inputs=gr.inputs.Image(type="pil"),
outputs=gr.outputs.Label(num_top_classes=3),
title="Image Classification with Materializer",
description="Upload an image to classify it using the Materializer model."
)
# Launch the interface
iface.launch()
|