koclip / image2text.py
jaketae's picture
feature: add streamlit backbone
f1d50b1
raw history blame
No virus
224 Bytes
import streamlit as st
from utils import load_model
def app(model_name):
model, processor = load_model(model_name)
st.title("Text to Image Retrieval")
st.markdown("""
Some text goes in here.
""")