Spaces:
Sleeping
Sleeping
File size: 613 Bytes
ed29c11 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import os
import streamlit as st
pages = {
"home": [
st.Page("home.py",title="about",icon=":material/home:")
],
"generate embeddings": [
st.Page("generate_embeddings.py", title="generate",icon=":material/dataset:")
],
"annotation": [
st.Page("train_model.py", title="train model",icon=":material/model_training:"),
st.Page("apply_model.py", title="apply model",icon=":material/grade:"),
],
"behavior discovery": [
st.Page("explore.py", title="explore",icon=":material/search:")
],
}
pg = st.navigation(pages)
pg.run()
|