File size: 387 Bytes
357b0b8
 
a78bf29
357b0b8
 
 
 
 
a78bf29
 
357b0b8
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import dashboard_text2image
import dashboard_image2image
import dashboard_featurefinder

import streamlit as st

PAGES = {
    "Text to Image": dashboard_text2image,
    "Image to Image": dashboard_image2image,
    "Feature in Image": dashboard_featurefinder,
}
st.sidebar.title("Navigation")

selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page.app()