Spaces:
Running
Running
File size: 490 Bytes
2a0bb43 5cc77db fda01de ee7859a 33b33dd f22bd2a 33b33dd 6f02b92 33b33dd 40c0a4f 33b33dd 5cc77db 33b33dd fda01de ed07ef7 33b33dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import apps.sdg_pd as sdg_tab
import apps.intro as intro
import apps.similarity as similarity
# import appStore.check_site as check_site
from apps.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("Intro", intro.app)
app.add_app("SDG", sdg_tab.app)
app.add_app("Similarity", similarity.app)
app.run() |