Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,6 +10,7 @@ st.set_page_config(
|
|
| 10 |
|
| 11 |
# Load the image
|
| 12 |
image = Image.open("factEvalSteps.png")
|
|
|
|
| 13 |
|
| 14 |
# Custom CSS for the page
|
| 15 |
st.markdown(
|
|
@@ -72,8 +73,9 @@ st.markdown(
|
|
| 72 |
|
| 73 |
# Display title and description
|
| 74 |
st.markdown('<div class="container">', unsafe_allow_html=True)
|
| 75 |
-
st.
|
| 76 |
-
|
|
|
|
| 77 |
st.markdown('<div class="description">Benchmark for LM Factuality Evaluation</div>',
|
| 78 |
unsafe_allow_html=True)
|
| 79 |
st.markdown('</div>', unsafe_allow_html=True)
|
|
|
|
| 10 |
|
| 11 |
# Load the image
|
| 12 |
image = Image.open("factEvalSteps.png")
|
| 13 |
+
logo_image = Image.open("Factbench_logo.png")
|
| 14 |
|
| 15 |
# Custom CSS for the page
|
| 16 |
st.markdown(
|
|
|
|
| 73 |
|
| 74 |
# Display title and description
|
| 75 |
st.markdown('<div class="container">', unsafe_allow_html=True)
|
| 76 |
+
st.image(logo_image, use_column_width=True)
|
| 77 |
+
# st.markdown('<div class="title">FactBench Leaderboard</div>',
|
| 78 |
+
# unsafe_allow_html=True)
|
| 79 |
st.markdown('<div class="description">Benchmark for LM Factuality Evaluation</div>',
|
| 80 |
unsafe_allow_html=True)
|
| 81 |
st.markdown('</div>', unsafe_allow_html=True)
|