Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ from utils.uploadAndExample import add_upload
|
|
11 |
import appStore.doc_processing as processing
|
12 |
import appStore.tapp as tapp_extraction
|
13 |
import appStore.adapmit as adapmit
|
14 |
-
|
15 |
|
16 |
|
17 |
|
@@ -105,8 +105,7 @@ with st.expander("ℹ️ - About this app", expanded=False):
|
|
105 |
st.write("")
|
106 |
|
107 |
# apps to be run
|
108 |
-
apps = [processing.app, tapp_extraction.app, adapmit.app]
|
109 |
-
#, sector.app, adapmit.app,
|
110 |
# conditional.app, subtarget.app, category.app]
|
111 |
|
112 |
multiplier_val =1/len(apps)
|
|
|
11 |
import appStore.doc_processing as processing
|
12 |
import appStore.tapp as tapp_extraction
|
13 |
import appStore.adapmit as adapmit
|
14 |
+
import appStore.sector as sector
|
15 |
|
16 |
|
17 |
|
|
|
105 |
st.write("")
|
106 |
|
107 |
# apps to be run
|
108 |
+
apps = [processing.app, tapp_extraction.app, adapmit.app, sector.app]
|
|
|
109 |
# conditional.app, subtarget.app, category.app]
|
110 |
|
111 |
multiplier_val =1/len(apps)
|