Harsh502s commited on
Commit
1c8785e
β€’
1 Parent(s): 135df75
Files changed (2) hide show
  1. app.py +11 -0
  2. 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