Spaces:
Runtime error
Runtime error
File size: 350 Bytes
61448a4 7987133 af14fe8 7987133 34d1458 af14fe8 9e74540 af14fe8 61448a4 7987133 61448a4 af14fe8 61448a4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import home
import text2image
import image2image
import streamlit as st
st.set_page_config(layout="wide")
st.sidebar.title("Multi-task Vision–Language AI for Pathology")
PAGES = {
"Introduction": home,
"Text to Image": text2image,
"Image to Image": image2image,
}
page = st.sidebar.radio("", list(PAGES.keys()))
PAGES[page].app()
|