Spaces:
Running
Running
File size: 523 Bytes
6d4cc80 52d88a8 faeb28b 52d88a8 faeb28b 6d4cc80 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import streamlit as st
import logging
app = st.navigation(
{"App": [st.Page("Home.py", title="Home", icon=":material/home:")],
"Models": [
st.Page("pressure_meter.py", title="v3 - Pressure Meter", icon=":material/filter_b_and_w:"),
st.Page("hockey_object_detection.py", title="v2 - Hockey Object Detection", icon=":material/filter_b_and_w:"),
st.Page("Hockey_Breeds.py", title="v1 - Hockey Breeds", icon=":material/gradient:")
]
}
)
app.run()
|