Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
flax-community
/
koclip
like
13
Build error
App
Files
Files
Community
f1d50b1
koclip
/
image2text.py
jaketae
feature: add streamlit backbone
f1d50b1
over 3 years ago
raw
Copy download link
history
blame
Safe
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.
"""
)