Spaces:
Runtime error
Runtime error
File size: 926 Bytes
75128dd 8ab7d9a 98abdf8 8ab7d9a 98abdf8 868805e 8ab7d9a 75128dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import streamlit as st
def build_sidebar():
sidebar = """
<div style='text-align: center'>
<p><br/><a href='https://github.com/TuanaCelik/find-the-animal'>Github project</a> - Based on <a href='https://github.com/deepset-ai/haystack'>Haystack</a></p>
<p>Project by <a href='https://github.com/ZanSara'>Sara Zanzottera</a> and <a href='https://github.com/TuanaCelik'>Tuana Celik</a></p>
<p>Project based on the "Introduction to Image Retrieval" presentation by Sara at the <a href="https://www.meetup.com/open-nlp-meetup/events/289499354/">Open NLP Meetup</a></p>
<p><a href="https://www.youtube.com/watch?v=7Idjl3OR0FY">Watch the presentation</a></p>
</div>
"""
st.sidebar.markdown(sidebar, unsafe_allow_html=True)
def set_state_if_absent(key, value):
if key not in st.session_state:
st.session_state[key] = value
def reset_results(*args):
st.session_state.results = None |