Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Multi-modal semantic Search using CLIP
8 students

Multi-modal semantic Search using CLIP

Solving long tail text to image Search using CLIP
Last updated 1/2023
English
English [Auto],

What you'll learn

  • At the end of my course students will be able to build real world image search engine
  • Learn how to use state of the art multimodal embedding
  • Learn how to express text and image embeddings in the same space
  • Learn to use CLIP embeddings to find images from text and vice versa

Course content

4 sections7 lectures52m total length
  • Introduction11:14

    Explore multimodal semantic search using clip to align image and text representations, enabling zero-shot text-image retrieval beyond lexical matching with contrastive learning.

  • About Author5:42

    Explore evergreen technologies in computer vision and natural language processing, covering image processing basics, convolutional morphology, language detection, document classification, and ElasticSearch with or without machine learning.

Requirements

  • None

Description

Conventional Image Search engines use a lexical approach and do not perform well for long queries. The reason behind this is that the search engines look for individual tokens, their frequency in the same document, and the rarity of the tokens among all documents. Also, the search keywords are matched with image textual metadata like tags and titles. For longer queries, we need a search engine that can understand the wholistic meaning of text query and expresses text and image embedding in the same space so that it can perform a search by using the nearest neighbor approach.

Contrastive Laniage Image Pre-training model from OpenAI provides similarity capability across multi-modal input such as text and image and express their embeddings in the same space. It leverages existing data from imagenet, internet and uses a contrastive approach to training. It's zero shot modal which means we don't have to retrain on our own corpus. We can just use it to generate text and visual embeddings and just sort the result based on the distance between vectors.

In this course, we'll use the CLIP model from openAI, PyTorch for preprocessing images and text, and simple nearest neighbor to illustrate the effect of longer queries on the Unsplash image search engine with and without the CLIP model.

This course provides basic understanding of deep learning and embeddings.

Who this course is for:

  • Beginner ML engineers who would like to know how to use embeddings for image search