Live data from Hacker News

Show HN: AI powered meme search, open-source

examples.jina.ai

31–34 of 34 posts

Re: Show HN: AI powered meme search, open-source

#31
post #30

For text search, this seems to be using trigrams or something? I tried “tired” and got a lot of “fired”, “required”, etc. not useful for me, since I usually want a meme to match a mood or theme

Hmmm...might be a model thing. We'll look into it

Re: Show HN: AI powered meme search, open-source

#32
post #30

For text search, this seems to be using trigrams or something? I tried “tired” and got a lot of “fired”, “required”, etc. not useful for me, since I usually want a meme to match a mood or theme

If you search like "animal food" you'll get a lot of memes related to animals and food without specifically mentioning those words (e.g. "dogs" and "eating" in the caption) so it's definitely using a neural net to grok the semantics.

The trigram thing might just be a weird glitch in the pretrained model we're using (sentence-transformers/paraphrase-distilroberta-base-v1)

Re: Show HN: AI powered meme search, open-source

#33
post #11
post #5

Earlier quoted context omitted.

Is this comment on the wrong post?

I guess this comment was meant for https://notegarden.web.app/ on https://news.ycombinator.com/item?id=28400446

Yes, I was checking out both projects but got distracted and didn't notice which one I replied to. By the time someone kindly pointed it out the edit window had closed.

Re: Show HN: AI powered meme search, open-source

#34
post #18

Earlier quoted context omitted.

I tried finding this - https://knowyourmeme.com/memes/who-killed-hannibal "Eric andre shoot" | "Eric andre kill"...I'm getting the drake meme. But searching for "Who killed" works. Also this might just be me but it would be nice if the search bar also worked by pressing "Enter" after a query.

That's a restriction in the front-end framework unfortunately :( Really hoping Streamlit supports that in future.

Hey, Streamlit co-founder here.

This should just work out of the box in Streamlit:

caption = st.text_input("Meme subject or caption")

if caption: # do search here

If that doesn't work for you, do you mind posting in our forums? I'd love to get to the bottom of this!

Forums → https://discuss.streamlit.io

(Cool app, btw!)

Post reply on HN