Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -33,6 +33,11 @@ st.markdown("""
|
|
33 |
<h3 class='text-center' style='margin-top: 0.5rem;'>
|
34 |
ℹ️ You can get sample images of road scenes in this <a href='https://drive.google.com/drive/folders/1202EMeXAHnN18NuhJKWWme34vg0V-svY?fbclid=IwAR3kyjGS895nOBKi9aGT_P4gLX9jvSNrV5b5y3GH49t2Pvg2sZSRA58LLxs' target='_blank'>link</a>.
|
35 |
</h3>""", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
36 |
semantic_segmentation = pipeline("image-segmentation", f"nvidia/segformer-b1-finetuned-cityscapes-1024-1024")
|
37 |
|
38 |
new_file_uploaded = False
|
@@ -98,16 +103,6 @@ if st.session_state.uploaded_file is not None:
|
|
98 |
while not new_file_uploaded:
|
99 |
time.sleep(1)
|
100 |
|
101 |
-
|
102 |
-
pdf_url = "https://arxiv.org/pdf/2105.15203.pdf"
|
103 |
-
|
104 |
-
st.markdown("""
|
105 |
-
<h3 style='text-align: center; margin-top: 2rem;'>
|
106 |
-
Read more about the paper below👇
|
107 |
-
</h5>
|
108 |
-
""", unsafe_allow_html=True)
|
109 |
-
st.markdown(f'<iframe class="pdf" src={pdf_url}></iframe>', unsafe_allow_html=True)
|
110 |
-
|
111 |
st.markdown("Group Members:")
|
112 |
for member in group_members:
|
113 |
st.markdown("- " + member)
|
|
|
33 |
<h3 class='text-center' style='margin-top: 0.5rem;'>
|
34 |
ℹ️ You can get sample images of road scenes in this <a href='https://drive.google.com/drive/folders/1202EMeXAHnN18NuhJKWWme34vg0V-svY?fbclid=IwAR3kyjGS895nOBKi9aGT_P4gLX9jvSNrV5b5y3GH49t2Pvg2sZSRA58LLxs' target='_blank'>link</a>.
|
35 |
</h3>""", unsafe_allow_html=True)
|
36 |
+
|
37 |
+
st.markdown("""
|
38 |
+
<h3 class='text-center' style='margin-top: 0.5rem;'>
|
39 |
+
📜 Read more about the paper <a href='https://arxiv.org/pdf/2105.15203.pdf' target='_blank'>here</a>.
|
40 |
+
</h3>""", unsafe_allow_html=True)
|
41 |
semantic_segmentation = pipeline("image-segmentation", f"nvidia/segformer-b1-finetuned-cityscapes-1024-1024")
|
42 |
|
43 |
new_file_uploaded = False
|
|
|
103 |
while not new_file_uploaded:
|
104 |
time.sleep(1)
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
st.markdown("Group Members:")
|
107 |
for member in group_members:
|
108 |
st.markdown("- " + member)
|