Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -43,8 +43,8 @@ HTML="""
|
|
43 |
</html>
|
44 |
"""
|
45 |
|
46 |
-
DESCRIPTION="""Welcome to our video retrieval demo powered by [Diangle/clip4clip-webvid](https://huggingface.co/Diangle/clip4clip-webvid)!
|
47 |
-
Using a simple sentence you will find the top 5 most relevant videos among a dataset of 1.5 million videos.
|
48 |
Discover, explore, and enjoy the world of videos at your fingertips.
|
49 |
"""
|
50 |
ENDING = """For search acceleration capabilities, please refer to [Searchium.ai](https://www.searchium.ai)
|
@@ -152,6 +152,6 @@ with gr.Blocks() as demo:
|
|
152 |
with gr.Column():
|
153 |
out = [gr.HTML() for _ in range(5)]
|
154 |
btn.click(search, inputs=inp, outputs=out)
|
155 |
-
gr.Markdown(
|
156 |
|
157 |
demo.launch()
|
|
|
43 |
</html>
|
44 |
"""
|
45 |
|
46 |
+
DESCRIPTION="""Welcome to our video retrieval demo powered by [Diangle/clip4clip-webvid](https://huggingface.co/Diangle/clip4clip-webvid)! /n
|
47 |
+
Using a simple sentence you will find the top 5 most relevant videos among a dataset of 1.5 million videos. /n
|
48 |
Discover, explore, and enjoy the world of videos at your fingertips.
|
49 |
"""
|
50 |
ENDING = """For search acceleration capabilities, please refer to [Searchium.ai](https://www.searchium.ai)
|
|
|
152 |
with gr.Column():
|
153 |
out = [gr.HTML() for _ in range(5)]
|
154 |
btn.click(search, inputs=inp, outputs=out)
|
155 |
+
gr.Markdown(ENDING)
|
156 |
|
157 |
demo.launch()
|