Spaces:
Runtime error
Runtime error
import gradio as gr | |
import requests | |
from PIL import Image | |
from transformers import BlipProcessor, BlipForConditionalGeneration | |
# Load BLIP model | |
processor = BlipProcessor.from_pretrained("Salesforce/blip-image-captioning-large") | |
model = BlipForConditionalGeneration.from_pretrained("Salesforce/blip-image-captioning-large") | |
# Define function for generating captions | |
def generate_caption(image): | |
# Convert image to PIL format | |
raw_image = Image.open(image).convert('RGB') | |
# Preprocess the image and generate caption | |
inputs = processor(raw_image, return_tensors="pt") | |
out = model.generate(**inputs) | |
caption = processor.decode(out[0], skip_special_tokens=True) | |
return caption | |
# Create Gradio interface | |
image_input = gr.inputs.Image(type='pil') # Specify input type as PIL image | |
caption_output = gr.outputs.Textbox() | |
gr.Interface(fn=generate_caption, inputs=image_input, outputs=caption_output).launch() | |