This is a text to image search using deep learning, vector similarity search. Ask me anything.

What in your system is doing the text-to-vector encoding, and how did you train it?

We're using Transformers with `sentence-transformers/paraphrase-distilroberta-base-v1` model.

The framework is Jina (https://github.com/jina-ai/jina/) so it's pretty high-level. You can see the indexing/search Flow on lines 37-52 of https://github.com/alexcg1/jina-meme-search-example/blob/mai...