Spaces:
Runtime error
Runtime error
sradc
commited on
Commit
•
eac1550
1
Parent(s):
04848c9
modified + added text on GUI
Browse files
video_semantic_search/app.py
CHANGED
@@ -110,13 +110,13 @@ def display_search_results(results: list[SearchResult]) -> None:
|
|
110 |
|
111 |
def main():
|
112 |
st.set_page_config(page_title="video-semantic-search", layout="wide")
|
113 |
-
st.header("
|
114 |
-
|
115 |
st.text_input("What are you looking for?", key="query")
|
116 |
-
|
117 |
query = st.session_state["query"]
|
|
|
118 |
if query:
|
119 |
display_search_results(SEARCHER.search(query))
|
|
|
120 |
|
121 |
|
122 |
if __name__ == "__main__":
|
|
|
110 |
|
111 |
def main():
|
112 |
st.set_page_config(page_title="video-semantic-search", layout="wide")
|
113 |
+
st.header("Visual content search over videos")
|
|
|
114 |
st.text_input("What are you looking for?", key="query")
|
|
|
115 |
query = st.session_state["query"]
|
116 |
+
st.text("Click an image to see the video on YouTube")
|
117 |
if query:
|
118 |
display_search_results(SEARCHER.search(query))
|
119 |
+
st.text("App by Ben Tenmann (BenTenmann) and Sidney Radcliffe (sradc)")
|
120 |
|
121 |
|
122 |
if __name__ == "__main__":
|