Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -484,9 +484,28 @@ with tab2:
|
|
484 |
# Link to documentation/more info
|
485 |
st.markdown(
|
486 |
'<p class="about-text">For more information about the modeling process (from loading the dataset to fine-tuning '
|
487 |
-
'the model), check here: <a href="
|
488 |
unsafe_allow_html=True
|
489 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
490 |
st.markdown('</div>', unsafe_allow_html=True)
|
491 |
|
492 |
# Author section with profile
|
@@ -498,7 +517,7 @@ with tab2:
|
|
498 |
' <div class="author-image">IF</div>'
|
499 |
' <div>'
|
500 |
' <p style="margin: 0; font-weight: 600; color: #1f2937;">Ivy Fiecas-Borjal</p>'
|
501 |
-
' <p style="margin: 0; font-size: 14px; color: #6b7280;">
|
502 |
' <p style="margin-top: 5px; font-size: 14px;">'
|
503 |
' <a href="https://ifiecas.com/" target="_blank" style="color: #2563eb; text-decoration: none;">Visit Portfolio</a>'
|
504 |
' </p>'
|
|
|
484 |
# Link to documentation/more info
|
485 |
st.markdown(
|
486 |
'<p class="about-text">For more information about the modeling process (from loading the dataset to fine-tuning '
|
487 |
+
'the model), check here: <a href="https://github.com/ifiecas/bankloan2" target="_blank" style="color: #2563eb;">Github</a></p>',
|
488 |
unsafe_allow_html=True
|
489 |
)
|
490 |
+
|
491 |
+
# YouTube video section
|
492 |
+
st.markdown('<h2 class="section-header">Brief Explanation</h2>', unsafe_allow_html=True)
|
493 |
+
st.markdown('<p class="about-text">Watch this video for a brief explanation of the assessment:</p>', unsafe_allow_html=True)
|
494 |
+
|
495 |
+
# YouTube embed with responsive container
|
496 |
+
st.markdown("""
|
497 |
+
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin-bottom: 20px;">
|
498 |
+
<iframe
|
499 |
+
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"
|
500 |
+
src="https://www.youtube.com/embed/y88GidhkAE8?si=iesfB084u4qrtPB_"
|
501 |
+
title="Assessment Explanation"
|
502 |
+
frameborder="0"
|
503 |
+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
504 |
+
allowfullscreen>
|
505 |
+
</iframe>
|
506 |
+
</div>
|
507 |
+
""", unsafe_allow_html=True)
|
508 |
+
|
509 |
st.markdown('</div>', unsafe_allow_html=True)
|
510 |
|
511 |
# Author section with profile
|
|
|
517 |
' <div class="author-image">IF</div>'
|
518 |
' <div>'
|
519 |
' <p style="margin: 0; font-weight: 600; color: #1f2937;">Ivy Fiecas-Borjal</p>'
|
520 |
+
' <p style="margin: 0; font-size: 14px; color: #6b7280;">Building with AI & ML | Biz Dev in Tech</p>'
|
521 |
' <p style="margin-top: 5px; font-size: 14px;">'
|
522 |
' <a href="https://ifiecas.com/" target="_blank" style="color: #2563eb; text-decoration: none;">Visit Portfolio</a>'
|
523 |
' </p>'
|