| import streamlit as st |
|
|
| |
| page1 = st.Page("about_me.py", title="About Me", icon="π€") |
| page2 = st.Page("base.py", title="Home Page", icon="π ") |
| page3 = st.Page("popularity.py", title="Popularity Based Filtering", icon="π₯") |
| page4 = st.Page("content_based.py", title="Content Based Filtering", icon="π¬") |
| page5 = st.Page("collaborative_user.py", title="Collaborative User based", icon="π₯") |
| page6 = st.Page("collaborative_item.py", title="Collaborative Item based", icon="ποΈ") |
|
|
|
|
| |
| pg = st.navigation([page1, page2, page3, page4, page5, page6]) |
|
|
| |
| pg.run() |