陈俊杰 commited on
Commit
53464fb
1 Parent(s): 221547a
Files changed (1) hide show
  1. app.py +28 -9
app.py CHANGED
@@ -130,15 +130,34 @@ elif page == "Important Dates":
130
  st.header("Important Dates")
131
  st.markdown("""
132
  <p class='main-text'>All deadlines are at 11:59pm in the Anywhere on Earth (AOE) timezone.</p>
133
- <span class='main-text'><strong>Kickoff Event</strong>:</span> <span class='main-text'>March 29, 2024</span><br />
134
- <span class='main-text'><strong>Dataset Release</strong>:</span> <span class='main-text'>May 1, 2024</span><br />
135
- <span class='main-text'><strong>Dry run Deadline</strong>:</span> <span class='main-text'>👉Jan 15, 2025</span><br />
136
- <span class='main-text'><strong>Formal run</strong>:</span> <span class='main-text'>Jan 15, 2025 - Feb 1, 2025</span> <br />
137
- <span class='main-text'><strong>Evaluation Results Release</strong>:</span> <span class='main-text'>Feb 1, 2025</span> <br />
138
- <span class='main-text'><strong>Task overview release (draft)</strong>:</span> <span class='main-text'>Feb 1, 2025</span><br />
139
- <span class='main-text'><strong>Submission Due of Participant Papers (draft)</strong>:</span> <span class='main-text'>March 1, 2025</span><br />
140
- <span class='main-text'><strong>Camera-Ready Participant Paper Due</strong>:</span> <span class='main-text'>May 1, 2025</span><br />
141
- <span class='main-text'><strong>NTCIR-18 Conference</strong>:</span> <span class='main-text'>Jun 10-13 2025</span><br />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  <p>During the Dry run (until Jan 15, 2025), we will use the <a href="https://huggingface.co/datasets/THUIR/AEOLLM">test set</a> to evaluate the performance of participants' methods and release the results on the Leaderboard.
143
  <br />
144
  Before the Formal run begins (before Jan 15, 2025), we will release the reserved set. Participants need to submit their results for the reserved set before the Formal run ends (before Feb 1, 2025).</p>
 
130
  st.header("Important Dates")
131
  st.markdown("""
132
  <p class='main-text'>All deadlines are at 11:59pm in the Anywhere on Earth (AOE) timezone.</p>
133
+ """, unsafe_allow_html=True)
134
+
135
+ col1, col2 = st.columns(2)
136
+ with col1:
137
+ st.markdown("""
138
+ <span class='main-text'><strong>Kickoff Event</strong>:</span> <br />
139
+ <span class='main-text'><strong>Dataset Release</strong>:</span> <br />
140
+ <span class='main-text'><strong>Dry run Deadline</strong>:</span><br />
141
+ <span class='main-text'><strong>Formal run</strong>:</span> <br />
142
+ <span class='main-text'><strong>Evaluation Results Release</strong>:</span> <br />
143
+ <span class='main-text'><strong>Task overview release (draft)</strong>:</span> <br />
144
+ <span class='main-text'><strong>Submission Due of Participant Papers (draft)</strong>:</span> <br />
145
+ <span class='main-text'><strong>Camera-Ready Participant Paper Due</strong>:</span><br />
146
+ <span class='main-text'><strong>NTCIR-18 Conference</strong>:</span> <br />
147
+ """,unsafe_allow_html=True)
148
+ with col2:
149
+ st.markdown("""
150
+ <span class='main-text'>March 29, 2024</span><br />
151
+ <span class='main-text'>May 1, 2024</span><br />
152
+ <span class='main-text'>👉Jan 15, 2025</span><br />
153
+ <span class='main-text'>Jan 15, 2025 - Feb 1, 2025</span> <br />
154
+ <span class='main-text'>Feb 1, 2025</span> <br />
155
+ <span class='main-text'>Feb 1, 2025</span><br />
156
+ <span class='main-text'>March 1, 2025</span><br />
157
+ <span class='main-text'>May 1, 2025</span><br />
158
+ <span class='main-text'>Jun 10-13 2025</span><br />
159
+ """,unsafe_allow_html=True)
160
+ st.markdown("""
161
  <p>During the Dry run (until Jan 15, 2025), we will use the <a href="https://huggingface.co/datasets/THUIR/AEOLLM">test set</a> to evaluate the performance of participants' methods and release the results on the Leaderboard.
162
  <br />
163
  Before the Formal run begins (before Jan 15, 2025), we will release the reserved set. Participants need to submit their results for the reserved set before the Formal run ends (before Feb 1, 2025).</p>