Spaces:
Sleeping
Sleeping
File size: 980 Bytes
5ef1757 |
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 |
# app.py
import streamlit as st
from utils import ImageCaptioningModel
import tempfile
# Initialize the BLIP Image Captioning model
captioning_model = ImageCaptioningModel()
# Streamlit UI
st.title("🖼️ Image Captioning with BLIP")
st.write("Upload an image and the model will generate a description.")
# Upload Image
uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"])
if uploaded_file is not None:
# Display uploaded image
st.image(uploaded_file, caption="Uploaded Image", use_column_width=True)
# Save file temporarily
with tempfile.NamedTemporaryFile(delete=False, suffix=".jpg") as temp_file:
temp_file.write(uploaded_file.getbuffer())
temp_file_path = temp_file.name
# Generate caption
with st.spinner("Generating caption..."):
caption = captioning_model.generate_caption(temp_file_path)
# Show caption result
st.success("Generated Caption:")
st.write(f"**{caption}**")
|