Spaces:
Running
Running
File size: 427 Bytes
373e9fb 33b33dd ee7859a 33b33dd 6f02b92 33b33dd 40c0a4f 33b33dd 40c0a4f 33b33dd ed07ef7 33b33dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import apps.sdg as sdg_tab
#import apps.sdg_analysis as sdg_analysis
# import appStore.check_site as check_site
from appStore.multiapp import MultiApp
import streamlit as st
st.set_page_config(f'Embedding Visualisator (Sentence Transformer)',
layout="wide",
initial_sidebar_state="expanded")
app = MultiApp()
app.add_app("SDG", sdg_tab.app)
#app.add_app("Info", info.app)
app.run() |