Update app.py
Browse files
app.py
CHANGED
@@ -43,8 +43,16 @@ input_textbox = gr.Textbox(lines=1, label="Type your vibe here 🧠")
|
|
43 |
output_gallery = gr.Gallery(label="Your Meme Results", columns=3, rows=2, height="auto")
|
44 |
|
45 |
title = "🧠 Meme Lord"
|
46 |
-
description =
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
# Launch app
|
50 |
iface = gr.Interface(
|
|
|
43 |
output_gallery = gr.Gallery(label="Your Meme Results", columns=3, rows=2, height="auto")
|
44 |
|
45 |
title = "🧠 Meme Lord"
|
46 |
+
description = (
|
47 |
+
"Search memes from a diverse collection using sentence-level semantic similarity. "
|
48 |
+
"Built with Sentence Transformers and hosted on Hugging Face. "
|
49 |
+
"[Dataset](https://huggingface.co/datasets/Go-Raw/semantic-memes)"
|
50 |
+
)
|
51 |
+
examples = [
|
52 |
+
"When you realize it's Monday again",
|
53 |
+
"Internet explorer in 2024",
|
54 |
+
"This meeting could’ve been an email"
|
55 |
+
]
|
56 |
|
57 |
# Launch app
|
58 |
iface = gr.Interface(
|