Spaces:
Sleeping
Sleeping
File size: 728 Bytes
ee412eb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import streamlit as st
import main_dashboard
import about_page
import datasets_page
import system_test_page
st.set_page_config(page_title="Surgical Scene Understanding", page_icon="🩺", layout="wide")
with st.sidebar:
st.markdown("## 🩺 Surgical Scene Understanding")
page = st.radio(
"Navigation",
[
"🏠 Main Dashboard",
"🧪 Test System",
"📂 Dataset",
"ℹ️ About"
],
label_visibility="collapsed"
)
if page.startswith("🏠"):
main_dashboard.show()
elif page.startswith("🧪"):
system_test_page.show()
elif page.startswith("📂"):
datasets_page.show()
elif page.startswith("ℹ️"):
about_page.show() |