bgamazay commited on
Commit
e394870
·
verified ·
1 Parent(s): 58e0c10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -4
app.py CHANGED
@@ -175,10 +175,18 @@ def main():
175
  st.sidebar.write("#### 4. Share your label! [Guidelines](https://huggingface.github.io/AIEnergyScore/#labelusage)")
176
  st.sidebar.markdown("<hr style='border: 1px solid gray; margin: 15px 0;'>", unsafe_allow_html=True)
177
  st.sidebar.write("### Key Links")
178
- st.sidebar.write("- [Leaderboard](https://huggingface.co/spaces/AIEnergyScore/Leaderboard)")
179
- st.sidebar.write("- [Submission Portal](https://huggingface.co/spaces/AIEnergyScore/submission_portal)")
180
- st.sidebar.write("- [FAQ](https://huggingface.github.io/AIEnergyScore/#faq)")
181
- st.sidebar.write("- [Documentation](https://huggingface.github.io/AIEnergyScore/#documentation)")
 
 
 
 
 
 
 
 
182
 
183
  def create_label_single_pass(background_image, model_data, final_size=(520, 728)):
184
  bg_resized = background_image.resize(final_size, Image.Resampling.LANCZOS)
 
175
  st.sidebar.write("#### 4. Share your label! [Guidelines](https://huggingface.github.io/AIEnergyScore/#labelusage)")
176
  st.sidebar.markdown("<hr style='border: 1px solid gray; margin: 15px 0;'>", unsafe_allow_html=True)
177
  st.sidebar.write("### Key Links")
178
+ st.sidebar.markdown(
179
+ """
180
+ <ul style="margin-top: 0; margin-bottom: 0; padding-left: 20px;">
181
+ <li><a href="https://huggingface.co/spaces/AIEnergyScore/Leaderboard" target="_blank">Leaderboard</a></li>
182
+ <li><a href="https://huggingface.co/spaces/AIEnergyScore/submission_portal" target="_blank">Submission Portal</a></li>
183
+ <li><a href="https://huggingface.github.io/AIEnergyScore/#faq" target="_blank">FAQ</a></li>
184
+ <li><a href="https://huggingface.github.io/AIEnergyScore/#documentation" target="_blank">Documentation</a></li>
185
+ </ul>
186
+ """,
187
+ unsafe_allow_html=True,
188
+ )
189
+
190
 
191
  def create_label_single_pass(background_image, model_data, final_size=(520, 728)):
192
  bg_resized = background_image.resize(final_size, Image.Resampling.LANCZOS)