evelynsaltt commited on
Commit
cc4b88c
·
verified ·
1 Parent(s): 4869945

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +3 -2
src/streamlit_app.py CHANGED
@@ -57,7 +57,7 @@ col1, col2, col3 = st.columns(3)
57
  with col1:
58
  st.markdown("""
59
  <div style='text-align: center; font-weight: bold;'>
60
- Input Video 1 <span style="font-weight: normal;">(Generated with Generative AI)</span>
61
  </div>
62
  """, unsafe_allow_html=True)
63
 
@@ -74,7 +74,8 @@ with col2:
74
  st.error("Interpolated video not found")
75
 
76
  with col3:
77
- st.markdown("<div style='text-align: center; font-weight: bold;'>Input Video 2</div>", unsafe_allow_html=True)
 
78
  if exists_2:
79
  st.video(video_input2)
80
  else:
 
57
  with col1:
58
  st.markdown("""
59
  <div style='text-align: center; font-weight: bold;'>
60
+ Input Video 1 <span style="font-weight: normal;">(Generated with generative AI)</span>
61
  </div>
62
  """, unsafe_allow_html=True)
63
 
 
74
  st.error("Interpolated video not found")
75
 
76
  with col3:
77
+ st.markdown("""<div style='text-align: center; font-weight: bold;'>Input Video 2 <span style="font-weight: normal;">(Obtained from real-world dataset)</span>
78
+ </div>""", unsafe_allow_html=True)
79
  if exists_2:
80
  st.video(video_input2)
81
  else: