File size: 394 Bytes
6d4cc80
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import streamlit as st

import logging

app = st.navigation(
    {"App": [st.Page("Home.py", title="Home", icon=":material/home:"),
             st.Page("About.py", icon="🥅")],
     "Models": [st.Page("Hockey_Breeds.py", icon=":material/gradient:"),
                st.Page("hockey_object_detection.py", title="Hockey Object Detection", icon=":material/filter_b_and_w:")]
     }
)
app.run()