koclip / app.py
jaketae's picture
feature: add intro page, cleanup descriptions
a811816
raw history blame
No virus
432 Bytes
import streamlit as st
import image2text
import intro
import text2image
import text2patch
PAGES = {
"Introduction": intro,
"Text to Image": text2image,
"Image to Text": image2text,
"Text to Patch": text2patch,
}
st.sidebar.title("Navigation")
model = st.sidebar.selectbox("Choose a model", ["koclip-base", "koclip-large"])
page = st.sidebar.selectbox("Navigate to...", list(PAGES.keys()))
PAGES[page].app(model)