Commit
Browse files- app.py +11 -0
- requirements.txt +2 -0
app.py
CHANGED
|
@@ -1,4 +1,15 @@
|
|
| 1 |
import streamlit as st
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
st.set_page_config(
|
| 4 |
page_title="Autonomous Text Tagging App",
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
from st_pages import Page, show_pages
|
| 3 |
+
|
| 4 |
+
# should be
|
| 5 |
+
show_pages(
|
| 6 |
+
[
|
| 7 |
+
Page(r"app.py", "Home", "π "),
|
| 8 |
+
Page(r"Pages/1_π_Topic Model Results.py", 'Topic Model Result',"π"),
|
| 9 |
+
Page(r"Pages/2_π€_Models.py", "Models", "π€"),
|
| 10 |
+
Page(r"Pages/3_π_About.py", "About", "π"),
|
| 11 |
+
]
|
| 12 |
+
)
|
| 13 |
|
| 14 |
st.set_page_config(
|
| 15 |
page_title="Autonomous Text Tagging App",
|
requirements.txt
CHANGED
|
@@ -95,6 +95,7 @@ pynndescent==0.5.10
|
|
| 95 |
pyparsing==3.1.1
|
| 96 |
python-dateutil==2.8.2
|
| 97 |
pytz==2023.3.post1
|
|
|
|
| 98 |
PyYAML==6.0.1
|
| 99 |
pyzmq==25.1.1
|
| 100 |
referencing==0.30.2
|
|
@@ -132,6 +133,7 @@ tensorboard==2.14.1
|
|
| 132 |
tensorboard-data-server==0.7.1
|
| 133 |
tensorflow==2.14.0
|
| 134 |
tensorflow-estimator==2.14.0
|
|
|
|
| 135 |
tensorflow-io-gcs-filesystem==0.31.0
|
| 136 |
termcolor==2.3.0
|
| 137 |
threadpoolctl==3.2.0
|
|
|
|
| 95 |
pyparsing==3.1.1
|
| 96 |
python-dateutil==2.8.2
|
| 97 |
pytz==2023.3.post1
|
| 98 |
+
pywin32==306
|
| 99 |
PyYAML==6.0.1
|
| 100 |
pyzmq==25.1.1
|
| 101 |
referencing==0.30.2
|
|
|
|
| 133 |
tensorboard-data-server==0.7.1
|
| 134 |
tensorflow==2.14.0
|
| 135 |
tensorflow-estimator==2.14.0
|
| 136 |
+
tensorflow-intel==2.14.0
|
| 137 |
tensorflow-io-gcs-filesystem==0.31.0
|
| 138 |
termcolor==2.3.0
|
| 139 |
threadpoolctl==3.2.0
|