prashant
commited on
Commit
•
34cf2d4
1
Parent(s):
5bc4948
updating info
Browse files- appStore/info.py +10 -3
appStore/info.py
CHANGED
@@ -2,16 +2,23 @@ import streamlit as st
|
|
2 |
|
3 |
|
4 |
def app():
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
with open('style.css') as f:
|
8 |
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
9 |
footer = """
|
10 |
<div class="footer-custom">
|
|
|
|
|
11 |
Developer - <a href="https://www.linkedin.com/in/erik-lehmann-giz/" target="_blank">Erik Lehmann</a> |
|
12 |
<a href="https://www.linkedin.com/in/jonas-nothnagel-bb42b114b/" target="_blank">Jonas Nothnagel</a> |
|
13 |
<a href="https://www.linkedin.com/in/prashantpsingh/" target="_blank">Prashant Singh</a> |
|
14 |
-
|
15 |
</div>
|
16 |
"""
|
17 |
st.markdown(footer, unsafe_allow_html=True)
|
@@ -34,7 +41,7 @@ The collaboration aims to determine the potential of NLP methods for tracking po
|
|
34 |
<br>
|
35 |
"""
|
36 |
st.markdown(intro, unsafe_allow_html=True)
|
37 |
-
st.image("
|
38 |
#st.subheader("Methodology")
|
39 |
#st.write("Each sentence in the generated answer ends with a coloured tooltip; the colour ranges from red to green. "
|
40 |
# "The tooltip contains a value representing answer sentence similarity to a specific sentence in the "
|
|
|
2 |
|
3 |
|
4 |
def app():
|
5 |
+
# if 'file' in st.session_state:
|
6 |
+
# file = st.session_state['file']
|
7 |
+
# else:
|
8 |
+
# st.sidebar.markdown(" :cloud: Upload document ")
|
9 |
+
# uploaded_file = st.sidebar.file_uploader('', type=['pdf', 'docx', 'txt']) #Upload PDF File
|
10 |
+
# st.session_state['file'] = uploaded_file
|
11 |
|
12 |
with open('style.css') as f:
|
13 |
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
14 |
footer = """
|
15 |
<div class="footer-custom">
|
16 |
+
Guidance & Feedback - <a href="https://www.linkedin.com/in/maren-bernlöhr-149891222" target="_blank">Maren Bernlöhr</a> |
|
17 |
+
<a href="https://www.linkedin.com/in/manuelkuhm" target="_blank">Manuel Kuhm</a> |
|
18 |
Developer - <a href="https://www.linkedin.com/in/erik-lehmann-giz/" target="_blank">Erik Lehmann</a> |
|
19 |
<a href="https://www.linkedin.com/in/jonas-nothnagel-bb42b114b/" target="_blank">Jonas Nothnagel</a> |
|
20 |
<a href="https://www.linkedin.com/in/prashantpsingh/" target="_blank">Prashant Singh</a> |
|
21 |
+
|
22 |
</div>
|
23 |
"""
|
24 |
st.markdown(footer, unsafe_allow_html=True)
|
|
|
41 |
<br>
|
42 |
"""
|
43 |
st.markdown(intro, unsafe_allow_html=True)
|
44 |
+
st.image("appStore/img/pic1.png", caption="")
|
45 |
#st.subheader("Methodology")
|
46 |
#st.write("Each sentence in the generated answer ends with a coloured tooltip; the colour ranges from red to green. "
|
47 |
# "The tooltip contains a value representing answer sentence similarity to a specific sentence in the "
|