Spaces:
Running
Running
Update app.py
Browse files
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.
|
179 |
-
|
180 |
-
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)
|