Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -45,6 +45,15 @@ st.markdown(
|
|
| 45 |
color: #555;
|
| 46 |
}
|
| 47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
.container {
|
| 49 |
max-width: 1000px;
|
| 50 |
margin: 0 auto;
|
|
@@ -110,13 +119,24 @@ st.markdown(
|
|
| 110 |
# header_md_text = HEADER_MD # make some parameters later
|
| 111 |
# gr.Markdown(header_md_text, elem_classes="markdown-text")
|
| 112 |
|
| 113 |
-
st.markdown(
|
| 114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 115 |
|
| 116 |
|
| 117 |
-
st.markdown('<div class="title">FactBench Leaderboard</div>',
|
| 118 |
-
|
| 119 |
-
st.markdown('<div class="description">Benchmark for LM Factuality Evaluation</div>',
|
| 120 |
unsafe_allow_html=True)
|
| 121 |
st.markdown('</div>', unsafe_allow_html=True)
|
| 122 |
|
|
|
|
| 45 |
color: #555;
|
| 46 |
}
|
| 47 |
|
| 48 |
+
.header {
|
| 49 |
+
display: flex;
|
| 50 |
+
align-items: left;
|
| 51 |
+
font-family: 'Arial', sans-serif; /* or use a similar sans-serif font */
|
| 52 |
+
font-size: 24px; /* Adjust as needed */
|
| 53 |
+
color: #2D3748; /* Dark gray color, adjust to match your theme */
|
| 54 |
+
margin-bottom: 20px;
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
.container {
|
| 58 |
max-width: 1000px;
|
| 59 |
margin: 0 auto;
|
|
|
|
| 119 |
# header_md_text = HEADER_MD # make some parameters later
|
| 120 |
# gr.Markdown(header_md_text, elem_classes="markdown-text")
|
| 121 |
|
| 122 |
+
st.markdown(
|
| 123 |
+
'''
|
| 124 |
+
<div class="header">
|
| 125 |
+
<br/>
|
| 126 |
+
<p style="font-size:32px;">π FactBench: A Dynamic Benchmark for In-the-Wild Language Model Factuality Evaluation</p>
|
| 127 |
+
<p>
|
| 128 |
+
π <a href="#">Paper</a> | π» <a href="#">GitHub</a> | π¦ <a href="#">X</a> | π¬ <a href="#">Discussion</a> |
|
| 129 |
+
βοΈ <strong>Version</strong>: <strong>V1</strong> | <strong># Models</strong>: 7 | Updated: <strong>10/26/2024</strong>
|
| 130 |
+
</p>
|
| 131 |
+
</div>
|
| 132 |
+
''',
|
| 133 |
+
unsafe_allow_html=True
|
| 134 |
+
)
|
| 135 |
|
| 136 |
|
| 137 |
+
# st.markdown('<div class="title">FactBench Leaderboard</div>',
|
| 138 |
+
# unsafe_allow_html=True)
|
| 139 |
+
# st.markdown('<div class="description">Benchmark for LM Factuality Evaluation</div>',
|
| 140 |
unsafe_allow_html=True)
|
| 141 |
st.markdown('</div>', unsafe_allow_html=True)
|
| 142 |
|