Spaces:
Runtime error
Runtime error
Changed the title of the app
Browse files
app.py
CHANGED
@@ -26,8 +26,8 @@ from urllib.error import URLError
|
|
26 |
# Load document embeddings
|
27 |
|
28 |
# set up title and sidebar
|
29 |
-
st.title("
|
30 |
-
st.markdown("This application is a dashboard for displaying your top 3 Sessions at the summit")
|
31 |
|
32 |
doc_emb = np.loadtxt("abstract-embed.txt", dtype=float)
|
33 |
|
@@ -38,7 +38,7 @@ df = pd.read_csv("sessions.csv", usecols=['Unique ID', 'Name', 'Description', 'A
|
|
38 |
# front end elements of the web page
|
39 |
html_temp = """
|
40 |
<div style ="background-color:lightblue;padding:13px">
|
41 |
-
<h1 style ="color:white;text-align:center;">Sentence Similarity App Nashville Analytic Summit</h1>
|
42 |
</div>
|
43 |
"""
|
44 |
def main():
|
|
|
26 |
# Load document embeddings
|
27 |
|
28 |
# set up title and sidebar
|
29 |
+
st.title(" What are your top 3 Important Sessions?")
|
30 |
+
st.markdown("This application is a dashboard for displaying your top 3 Sessions at the Nashville summit")
|
31 |
|
32 |
doc_emb = np.loadtxt("abstract-embed.txt", dtype=float)
|
33 |
|
|
|
38 |
# front end elements of the web page
|
39 |
html_temp = """
|
40 |
<div style ="background-color:lightblue;padding:13px">
|
41 |
+
<h1 style ="color:white;text-align:center;">Sentence Similarity App for Nashville Analytic Summit 2022</h1>
|
42 |
</div>
|
43 |
"""
|
44 |
def main():
|